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

index e1d400ae6b745c21fbf45e8606554ce7fdf21297..7cd2f182b0ad13c06d3e6de65a98abee6b4850c7 100755 (executable)
@@ -35,8 +35,8 @@ cat <<\EOF > exp
 du: `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
 du: cannot access `d/no-x/y': Permission denied
 du: 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