summaryrefslogtreecommitdiffstats
path: root/perl-install/detect_devices.pm
diff options
context:
space:
mode:
authorPascal Terjan <pterjan@mandriva.org>2009-07-09 16:23:26 +0000
committerPascal Terjan <pterjan@mandriva.org>2009-07-09 16:23:26 +0000
commit9bff44271a4087abf44d776407ed6f79158f770b (patch)
treedec74ae642a1105adeaca51db90c9eeeee0b7063 /perl-install/detect_devices.pm
parent74efeb065219079db2a7be12f733f857cc4a8b06 (diff)
downloaddrakx-backup-do-not-use-9bff44271a4087abf44d776407ed6f79158f770b.tar
drakx-backup-do-not-use-9bff44271a4087abf44d776407ed6f79158f770b.tar.gz
drakx-backup-do-not-use-9bff44271a4087abf44d776407ed6f79158f770b.tar.bz2
drakx-backup-do-not-use-9bff44271a4087abf44d776407ed6f79158f770b.tar.xz
drakx-backup-do-not-use-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.pm2
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/$_";