aboutsummaryrefslogtreecommitdiff
path: root/sysdeps
diff options
context:
space:
mode:
authorDmitry V. Levin <ldv@altlinux.org>2013-03-21 23:02:37 +0000
committerDmitry V. Levin <ldv@altlinux.org>2013-03-22 03:16:00 +0000
commit2e0fb52187504fad6657c9462ce650a540d5e387 (patch)
treed7486ae2821d23ed6991d8da7e74c85542a4df28 /sysdeps
parentb5784d95bb94eda59b08aca735406908e209f638 (diff)
downloadglibc-2e0fb52187504fad6657c9462ce650a540d5e387.zip
glibc-2e0fb52187504fad6657c9462ce650a540d5e387.tar.gz
glibc-2e0fb52187504fad6657c9462ce650a540d5e387.tar.bz2
BZ#11120: fix x86_64/strcmp.S NOT_IN_libc safeguards
Due to a typo repeated several times, this bug hasn't been fixed yet, despite being marked as resolved in glibc 2.12. * sysdeps/x86_64/strcmp.S: Replace all occurrences of NOT_IN_lib with NOT_IN_libc.
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/x86_64/strcmp.S6
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/x86_64/strcmp.S b/sysdeps/x86_64/strcmp.S
index de9ecc9..7680937 100644
--- a/sysdeps/x86_64/strcmp.S
+++ b/sysdeps/x86_64/strcmp.S
@@ -32,7 +32,7 @@
/* The simplified code below is not set up to handle strncmp() so far.
Should this become necessary it has to be implemented. For now
just report the problem. */
-# ifdef NOT_IN_lib
+# ifdef NOT_IN_libc
# error "strncmp not implemented so far"
# endif
@@ -51,7 +51,7 @@
# include "locale-defines.h"
/* No support for strcasecmp outside libc so far since it is not needed. */
-# ifdef NOT_IN_lib
+# ifdef NOT_IN_libc
# error "strcasecmp_l not implemented so far"
# endif
@@ -60,7 +60,7 @@
# include "locale-defines.h"
/* No support for strncasecmp outside libc so far since it is not needed. */
-# ifdef NOT_IN_lib
+# ifdef NOT_IN_libc
# error "strncasecmp_l not implemented so far"
# endif