diff options
author | Pascal Terjan <pterjan@mandriva.org> | 2009-07-09 16:23:26 +0000 |
---|---|---|
committer | Pascal Terjan <pterjan@mandriva.org> | 2009-07-09 16:23:26 +0000 |
commit | 9bff44271a4087abf44d776407ed6f79158f770b (patch) | |
tree | dec74ae642a1105adeaca51db90c9eeeee0b7063 /perl-install/detect_devices.pm | |
parent | 74efeb065219079db2a7be12f733f857cc4a8b06 (diff) | |
download | drakx-9bff44271a4087abf44d776407ed6f79158f770b.tar drakx-9bff44271a4087abf44d776407ed6f79158f770b.tar.gz drakx-9bff44271a4087abf44d776407ed6f79158f770b.tar.bz2 drakx-9bff44271a4087abf44d776407ed6f79158f770b.tar.xz drakx-9bff44271a4087abf44d776407ed6f79158f770b.zip |
don't log the links we ignore when looking for scsi devices (#49406)
Diffstat (limited to 'perl-install/detect_devices.pm')
-rw-r--r-- | perl-install/detect_devices.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm index 251bf4fe4..0c36dbfcc 100644 --- a/perl-install/detect_devices.pm +++ b/perl-install/detect_devices.pm @@ -203,7 +203,7 @@ sub getSCSI() { my @l; foreach (all($dev_dir)) { my ($host, $channel, $id, $lun) = split ':'; - defined $lun or log::l("bad entry in $dev_dir: $_"), next; + defined $lun or next; my $dir = "$dev_dir/$_"; |