summaryrefslogtreecommitdiff
path: root/tests/chmod/c-option
diff options
context:
space:
mode:
Diffstat (limited to 'tests/chmod/c-option')
-rwxr-xr-xtests/chmod/c-option2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/chmod/c-option b/tests/chmod/c-option
index 9235b52fc..0fc83912a 100755
--- a/tests/chmod/c-option
+++ b/tests/chmod/c-option
@@ -32,7 +32,7 @@ chmod -c g=rwx $file > out || fail=1
chmod -c g=rwx $file > empty || fail=1
test -s empty && fail=1
-case "`cat out`" in
+case "$(cat out)" in
"mode of 'f' changed from 0744 "?rwxr--r--?" to 0774 "?rwxrwxr--?) ;;
*) cat out; fail=1 ;;
esac