summaryrefslogtreecommitdiffstats
path: root/urpm.pm
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@mandriva.org>2004-07-28 09:31:53 +0000
committerRafael Garcia-Suarez <rgarciasuarez@mandriva.org>2004-07-28 09:31:53 +0000
commit405b621103d674cbdfe59915b96088e42d52ccb5 (patch)
tree168489b7c3115c1026a72433a6a6ac87af96c4f5 /urpm.pm
parentb735bd6c1315548f179dcfd6f58ea247114a38e6 (diff)
downloadurpmi-405b621103d674cbdfe59915b96088e42d52ccb5.tar
urpmi-405b621103d674cbdfe59915b96088e42d52ccb5.tar.gz
urpmi-405b621103d674cbdfe59915b96088e42d52ccb5.tar.bz2
urpmi-405b621103d674cbdfe59915b96088e42d52ccb5.tar.xz
urpmi-405b621103d674cbdfe59915b96088e42d52ccb5.zip
readdir nit
Diffstat (limited to 'urpm.pm')
-rw-r--r--urpm.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/urpm.pm b/urpm.pm
index 8120990d..2533c78c 100644
--- a/urpm.pm
+++ b/urpm.pm
@@ -404,7 +404,7 @@ sub configure {
if ($parallel_options) {
foreach my $dir (grep { -d $_ } map { "$_/urpm" } @INC) {
opendir my $dh, $dir or die $!;
- while ($_ = readdir $dh) {
+ while (defined ($_ = readdir $dh)) {
-f "$dir/$_" or next;
$urpm->{log}->(N("examining parallel handler in file [%s]", "$dir/$_"));
eval { require "$dir/$_"; $parallel_handler = $urpm->handle_parallel_options($parallel_options) };