diff options
author | Dmitry V. Levin <ldv@altlinux.org> | 2013-03-21 23:02:37 +0000 |
---|---|---|
committer | Dmitry V. Levin <ldv@altlinux.org> | 2013-03-22 03:16:00 +0000 |
commit | 2e0fb52187504fad6657c9462ce650a540d5e387 (patch) | |
tree | d7486ae2821d23ed6991d8da7e74c85542a4df28 /sysdeps/x86_64 | |
parent | b5784d95bb94eda59b08aca735406908e209f638 (diff) | |
download | glibc-2e0fb52187504fad6657c9462ce650a540d5e387.tar.gz glibc-2e0fb52187504fad6657c9462ce650a540d5e387.tar.xz glibc-2e0fb52187504fad6657c9462ce650a540d5e387.zip |
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/x86_64')
-rw-r--r-- | sysdeps/x86_64/strcmp.S | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/x86_64/strcmp.S b/sysdeps/x86_64/strcmp.S index de9ecc909e..76809373e8 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 |