From: Jim Meyering Date: Wed, 4 Jan 2006 16:07:11 +0000 (+0000) Subject: change comment and temp file name: s/openat/fdopendir/ X-Git-Tag: v6.0~969 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8f0572299a78a0d5a41f76ba561f91a081d30d6b;p=thirdparty%2Fcoreutils.git change comment and temp file name: s/openat/fdopendir/ --- diff --git a/tests/chmod/no-x b/tests/chmod/no-x index 247b052c32..fbbb4890df 100755 --- a/tests/chmod/no-x +++ b/tests/chmod/no-x @@ -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