diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2006-01-03 18:11:51 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2006-01-03 18:11:51 +0000 |
commit | a1c8899efa1620762ef9ac0fc8728bf8482c5f5c (patch) | |
tree | d46e16150d6840d962f5d1ecd5750bc14c454c46 /urpm.pm | |
parent | 60de791955c6920a444e3942e91ab22fd4c19438 (diff) | |
download | urpmi-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.pm | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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; } } |