From: Paul Eggert Date: Tue, 25 Jul 2006 18:38:25 +0000 (+0000) Subject: Use "chmod 0500" rather than "chmod 500". X-Git-Tag: v6.0~91 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=97e1e9019dcc96e6f99b1e8e89b205d82fd22356;p=thirdparty%2Fcoreutils.git Use "chmod 0500" rather than "chmod 500". --- diff --git a/tests/cp/fail-perm b/tests/cp/fail-perm index 11ac5432ab..dc8b0c4623 100755 --- a/tests/cp/fail-perm +++ b/tests/cp/fail-perm @@ -20,7 +20,7 @@ cd $tmp || framework_failure=1 mkdir D D/D || framework_failure=1 touch D/a || framework_failure=1 chmod 0 D/a || framework_failure=1 -chmod 500 D || framework_failure=1 +chmod 0500 D || framework_failure=1 if test $framework_failure = 1; then echo 'failure in testing framework'