]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
change comment and temp file name: s/openat/fdopendir/
authorJim Meyering <jim@meyering.net>
Wed, 4 Jan 2006 16:07:11 +0000 (16:07 +0000)
committerJim Meyering <jim@meyering.net>
Wed, 4 Jan 2006 16:07:11 +0000 (16:07 +0000)
tests/chmod/no-x

index 247b052c3294a0963f8e1526b218cb5cfdc4f301..fbbb4890df0bb6b18c8a84801d296faec23528b4 100755 (executable)
@@ -35,8 +35,8 @@ cat <<\EOF > exp
 chmod: `d/no-x': Permission denied
 EOF
 
-# With native openat, du uses a different code path.
-cat <<\EOF > exp-native-openat
+# With native fdopendir, du uses a different code path.
+cat <<\EOF > exp-native-fdopendir
 chmod: cannot access `d/no-x/y': Permission denied
 chmod: fts_read failed: Permission denied
 EOF
@@ -44,7 +44,7 @@ EOF
 if cmp out exp >/dev/null 2>&1; then
   :
 else
-  if cmp out exp-native-openat; then
+  if cmp out exp-native-fdopendir; then
     :
   else
     fail=1