diff options
author | Rasmus Villemoes <linux@rasmusvillemoes.dk> | 2014-10-13 18:54:27 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-10-13 20:18:23 -0400 |
commit | b0bfb63118612e3614cf77b115c00f895a42c96a (patch) | |
tree | 157abeb836d57d27bad8a00582af49a2a78d3441 | |
parent | cd514e727b18ff4d189b8e268db13729a4175091 (diff) |
lib: string: Make all calls to strnicmp into calls to strncasecmp
The previous patch made strnicmp into a wrapper for strncasecmp.
This patch makes all in-tree users of strnicmp call strncasecmp
directly, while still making sure that the strnicmp symbol can be used
by out-of-tree modules. It should be considered a temporary hack until
all in-tree callers have been converted.
Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | include/linux/string.h | 2 | ||||
-rw-r--r-- | lib/string.c | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/string.h b/include/linux/string.h index d36977e029af..e6edfe51575a 100644 --- a/include/linux/string.h +++ b/include/linux/string.h | |||
@@ -41,7 +41,7 @@ extern int strcmp(const char *,const char *); | |||
41 | extern int strncmp(const char *,const char *,__kernel_size_t); | 41 | extern int strncmp(const char *,const char *,__kernel_size_t); |
42 | #endif | 42 | #endif |
43 | #ifndef __HAVE_ARCH_STRNICMP | 43 | #ifndef __HAVE_ARCH_STRNICMP |
44 | extern int strnicmp(const char *, const char *, __kernel_size_t); | 44 | #define strnicmp strncasecmp |
45 | #endif | 45 | #endif |
46 | #ifndef __HAVE_ARCH_STRCASECMP | 46 | #ifndef __HAVE_ARCH_STRCASECMP |
47 | extern int strcasecmp(const char *s1, const char *s2); | 47 | extern int strcasecmp(const char *s1, const char *s2); |
diff --git a/lib/string.c b/lib/string.c index 3181e267a033..2fc20aa06f84 100644 --- a/lib/string.c +++ b/lib/string.c | |||
@@ -59,6 +59,7 @@ int strncasecmp(const char *s1, const char *s2, size_t len) | |||
59 | EXPORT_SYMBOL(strncasecmp); | 59 | EXPORT_SYMBOL(strncasecmp); |
60 | #endif | 60 | #endif |
61 | #ifndef __HAVE_ARCH_STRNICMP | 61 | #ifndef __HAVE_ARCH_STRNICMP |
62 | #undef strnicmp | ||
62 | int strnicmp(const char *s1, const char *s2, size_t len) | 63 | int strnicmp(const char *s1, const char *s2, size_t len) |
63 | { | 64 | { |
64 | return strncasecmp(s1, s2, len); | 65 | return strncasecmp(s1, s2, len); |