fix null string comparison in notrun case

Merge of master-melb:xfs-cmds:28004a by kenmcd.
This commit is contained in:
David Disseldorp
2007-01-31 14:36:17 +00:00
parent c7abee77d2
commit fef38da4f7
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ trap "_cleanup; exit \$status" 0 1 2 3 15
. ./common.filter . ./common.filter
. ./common.repair . ./common.repair
[ -z $XFS_PARALLEL_REPAIR64_PROG ] && _notrun "parallel repair binary xfs_prepair64 is not installed" [ -z "$XFS_PARALLEL_REPAIR64_PROG" ] && _notrun "parallel repair binary xfs_prepair64 is not installed"
# force use of parallel repair # force use of parallel repair
export XFS_REPAIR_PROG=$XFS_PARALLEL_REPAIR64_PROG export XFS_REPAIR_PROG=$XFS_PARALLEL_REPAIR64_PROG
+1 -1
View File
@@ -25,7 +25,7 @@ rm -f $seq.full
. ./common.repair . ./common.repair
. ./common.filter . ./common.filter
[ -z $XFS_PARALLEL_REPAIR_PROG ] && _notrun "parallel repair binary xfs_prepair is not installed" [ -z "$XFS_PARALLEL_REPAIR_PROG" ] && _notrun "parallel repair binary xfs_prepair is not installed"
# force use of parallel repair # force use of parallel repair
export XFS_REPAIR_PROG=$XFS_PARALLEL_REPAIR_PROG export XFS_REPAIR_PROG=$XFS_PARALLEL_REPAIR_PROG