summaryrefslogtreecommitdiff
path: root/tests/setgid-check
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2002-06-17 07:06:29 +0000
committerJim Meyering <jim@meyering.net>2002-06-17 07:06:29 +0000
commit86adc7266e3e464eaba9fd955132951daa62e1e9 (patch)
tree89dc06becfaeda994a291dd04ab4e223fdde0e22 /tests/setgid-check
parent57db2c8659ea9754a10ae4c61692229c1b0bc18e (diff)
downloadcoreutils-86adc7266e3e464eaba9fd955132951daa62e1e9.tar.xz
Interpret a permissions string of
drwxr-xr-x (DOS/Windows) as meaning the cwd is not setgid. Reported by Rich Dawe.
Diffstat (limited to 'tests/setgid-check')
-rw-r--r--tests/setgid-check6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/setgid-check b/tests/setgid-check
index 9dd0b1f8a..2b6936c97 100644
--- a/tests/setgid-check
+++ b/tests/setgid-check
@@ -11,7 +11,11 @@ setgid_tmpdir=setgid-$$
(umask 77; mkdir $setgid_tmpdir)
p=`ls -ld $setgid_tmpdir|sed 's/ .*//'`
rmdir $setgid_tmpdir
-case $p in drwx------);; *) cwd_is_setgid=yes;; esac
+case $p in
+ drwx------);;
+ drwxr-xr-x);; # Windows98 + DJGPP 2.03 + fileutils-4.1 does this.
+ *) cwd_is_setgid=yes;;
+esac
if test $cwd_is_setgid = yes; then
cat <<EOF >&2
$0: Since it looks like you're running this test in a directory with