From: Jim Meyering Date: Wed, 4 Jan 2006 16:06:59 +0000 (+0000) Subject: change comments and temp file name: s/openat/fdopendir/ X-Git-Tag: v6.0~970 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7b22d09fba8b1a3d2ba4ab485453afb53af009c7;p=thirdparty%2Fcoreutils.git change comments and temp file name: s/openat/fdopendir/ --- diff --git a/tests/du/no-x b/tests/du/no-x index e1d400ae6b..7cd2f182b0 100755 --- a/tests/du/no-x +++ b/tests/du/no-x @@ -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