summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland McGrath <roland@hack.frob.com>2015-09-03 16:06:07 -0700
committerRoland McGrath <roland@hack.frob.com>2015-09-03 16:06:07 -0700
commit3d7ef021fafb46a4f31ecc9e5665750f684180f3 (patch)
treee6d26d287213b98a5ca72951356bb5096fc0bb7a
parent02d55fe04e380c1856993f3d8036b9e23736722d (diff)
downloadglibc-roland/opendir-extra-stat.tar.gz
BZ#18921: Fix opendir inverted o_directory_works test.roland/opendir-extra-stat
-rw-r--r--ChangeLog8
-rw-r--r--sysdeps/posix/opendir.c2
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 3d9265602e..3a6d697bec 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2015-09-03 Roland McGrath <roland@hack.frob.com>
+
+ [BZ #18921]
+ * sysdeps/posix/opendir.c (need_isdir_precheck) [O_DIRECTORY]:
+ Fix inverted sense of test of 'o_directory_works' value.
+ Reported by Pádraig Brady <P@draigBrady.com>, diagnosed by
+ Bernhard Voelker <mail@bernhard-voelker.de>.
+
2015-09-03 Joseph Myers <joseph@codesourcery.com>
[BZ #14912]
diff --git a/sysdeps/posix/opendir.c b/sysdeps/posix/opendir.c
index 6509f5c05c..9edf056fb3 100644
--- a/sysdeps/posix/opendir.c
+++ b/sysdeps/posix/opendir.c
@@ -105,7 +105,7 @@ need_isdir_precheck (void)
tryopen_o_directory ();
/* We can skip the expensive `stat' call if O_DIRECTORY works. */
- return o_directory_works > 0;
+ return o_directory_works < 0;
#endif
return true;
}