summaryrefslogtreecommitdiffstats
path: root/urpm.pm
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@mandriva.org>2006-01-03 18:11:51 +0000
committerRafael Garcia-Suarez <rgarciasuarez@mandriva.org>2006-01-03 18:11:51 +0000
commita1c8899efa1620762ef9ac0fc8728bf8482c5f5c (patch)
treed46e16150d6840d962f5d1ecd5750bc14c454c46 /urpm.pm
parent60de791955c6920a444e3942e91ab22fd4c19438 (diff)
downloadurpmi-a1c8899efa1620762ef9ac0fc8728bf8482c5f5c.tar
urpmi-a1c8899efa1620762ef9ac0fc8728bf8482c5f5c.tar.gz
urpmi-a1c8899efa1620762ef9ac0fc8728bf8482c5f5c.tar.bz2
urpmi-a1c8899efa1620762ef9ac0fc8728bf8482c5f5c.tar.xz
urpmi-a1c8899efa1620762ef9ac0fc8728bf8482c5f5c.zip
Add explicit loop names
Diffstat (limited to 'urpm.pm')
-rw-r--r--urpm.pm10
1 files changed, 5 insertions, 5 deletions
diff --git a/urpm.pm b/urpm.pm
index 89575bf6..ca34b86c 100644
--- a/urpm.pm
+++ b/urpm.pm
@@ -1049,7 +1049,7 @@ sub update_media {
my %media_redone;
MEDIA:
foreach my $medium (@{$urpm->{media}}) {
- $medium->{ignore} and next;
+ $medium->{ignore} and next MEDIA;
$options{forcekey} and delete $medium->{'key-ids'};
@@ -1263,7 +1263,7 @@ this could happen if you mounted manually the directory when creating the medium
}
}
}
- $medium->{modified} or next;
+ $medium->{modified} or next MEDIA;
}
}
@@ -1316,7 +1316,7 @@ this could happen if you mounted manually the directory when creating the medium
$medium->{ignore} = 1;
}
}
- next;
+ next MEDIA;
}
}
} else {
@@ -1537,7 +1537,7 @@ this could happen if you mounted manually the directory when creating the medium
}
}
}
- $medium->{modified} or next;
+ $medium->{modified} or next MEDIA;
}
} else {
#- at this point, we don't if a basename exists and is valid, let probe it later.
@@ -1656,7 +1656,7 @@ this could happen if you mounted manually the directory when creating the medium
$medium->{ignore} = 1;
}
}
- next;
+ next MEDIA;
}
}