- Small directory check in _issueLip(). Not sure why this is needed.

git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@3956 d57e44dd-8a1f-0410-8b47-8ef2f437770f
This commit is contained in:
Mark Buechler
2011-12-06 19:41:33 +00:00
parent 3630f4ba6c
commit c866c6f4b1
+5 -2
View File
@@ -5006,8 +5006,11 @@ sub _issueLip {
my $ldir = $SCST->SCST_TARGETS_DIR."/$driver/$target/host/device/fc_host:$host";
if (!(opendir $dir, $ldir)) {
print "\t-> Driver/target is not a fibre channel target, ignoring.\n";
return FALSE;
$ldir = $SCST->SCST_TARGETS_DIR."/$driver/$target/host/device/fc_host/$host";
if (!(opendir $dir, $ldir)) {
print "\t-> Driver/target is not a fibre channel target, ignoring.\n";
return FALSE;
}
}
my $lip = $ldir.'/issue_lip';