aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2014-11-24 15:59:15 +0000
committerJoseph Myers <joseph@codesourcery.com>2014-11-24 15:59:15 +0000
commit9744496f8a479c23174cc330e4d422f130804c04 (patch)
treea2cdc6907445d1708b6f5c1ec71be968ed76d048 /ChangeLog
parent6423d4754c3769129510b9b44b6b8cfe8192ec67 (diff)
downloadglibc-9744496f8a479c23174cc330e4d422f130804c04.zip
glibc-9744496f8a479c23174cc330e4d422f130804c04.tar.gz
glibc-9744496f8a479c23174cc330e4d422f130804c04.tar.bz2
Fix perror fileno namespace (bug 17633).
perror, an ISO C function, uses fileno, which is not an ISO C function. This patch makes it use __fileno instead. (The nearby call to fdopen is not a problem because that's #defined to _IO_new_fdopen.) Tested for x86_64 (testsuite, and that installed stripped shared libraries are unchanged by this patch). [BZ #17633] * stdio-common/perror.c (perror): Call __fileno instead of fileno. * conform/Makefile (test-xfail-ISO/stdio.h/linknamespace): Remove variable. (test-xfail-ISO99/stdio.h/linknamespace): Likewise. (test-xfail-ISO11/stdio.h/linknamespace): Likewise.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog9
1 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 4e557a7..ec31874 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2014-11-24 Joseph Myers <joseph@codesourcery.com>
+
+ [BZ #17633]
+ * stdio-common/perror.c (perror): Call __fileno instead of fileno.
+ * conform/Makefile (test-xfail-ISO/stdio.h/linknamespace): Remove
+ variable.
+ (test-xfail-ISO99/stdio.h/linknamespace): Likewise.
+ (test-xfail-ISO11/stdio.h/linknamespace): Likewise.
+
2014-11-24 Wilco Dijkstra <wdijkstr@arm.com>
* string/strncpy.c (strncpy): Improve performance by using memset.