diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2004-04-28 07:46:19 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2004-04-28 07:46:19 +0000 |
commit | dc891fc82eae5a3408e840589a736b23787e38c5 (patch) | |
tree | 656b2d2046d5423949429f2fdfce7122be30b69a /urpm.pm | |
parent | f24a0ba7c810ede736a049e27934e4f833eab3ad (diff) | |
download | urpmi-dc891fc82eae5a3408e840589a736b23787e38c5.tar urpmi-dc891fc82eae5a3408e840589a736b23787e38c5.tar.gz urpmi-dc891fc82eae5a3408e840589a736b23787e38c5.tar.bz2 urpmi-dc891fc82eae5a3408e840589a736b23787e38c5.tar.xz urpmi-dc891fc82eae5a3408e840589a736b23787e38c5.zip |
Cleanup some perl warnings
Diffstat (limited to 'urpm.pm')
-rw-r--r-- | urpm.pm | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -231,7 +231,8 @@ sub read_config { while (<MD5SUM>) { my ($md5sum, $file) = /(\S*)\s+(.*)/; foreach (@{$urpm->{media}}) { - ($_->{synthesis} && "synthesis.").$_->{hdlist} eq $file and $_->{md5sum} = $md5sum, last; + ($_->{synthesis} ? "synthesis." : "").$_->{hdlist} eq $file + and $_->{md5sum} = $md5sum, last; } } close MD5SUM; @@ -1575,8 +1576,8 @@ this could happen if you mounted manually the directory when creating the medium } } else { #- the flag is no more necessary. - delete $medium->{list}; - unlink "$urpm->{statedir}/$medium->{list}"; + delete $medium->{list} + and unlink "$urpm->{statedir}/$medium->{list}"; } } } |