From fef38da4f744199805d25eb76f0a52a2d597ae16 Mon Sep 17 00:00:00 2001 From: David Disseldorp Date: Wed, 31 Jan 2007 14:36:17 +0000 Subject: [PATCH] fix null string comparison in notrun case Merge of master-melb:xfs-cmds:28004a by kenmcd. --- 148 | 2 +- 149 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/148 b/148 index a2621c1e..43052622 100755 --- a/148 +++ b/148 @@ -32,7 +32,7 @@ trap "_cleanup; exit \$status" 0 1 2 3 15 . ./common.filter . ./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 export XFS_REPAIR_PROG=$XFS_PARALLEL_REPAIR64_PROG diff --git a/149 b/149 index 5ac913c7..0e9d9748 100755 --- a/149 +++ b/149 @@ -25,7 +25,7 @@ rm -f $seq.full . ./common.repair . ./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 export XFS_REPAIR_PROG=$XFS_PARALLEL_REPAIR_PROG -- 2.47.3