aboutsummaryrefslogtreecommitdiffstats
path: root/lib/string.c
diff options
context:
space:
mode:
authorRasmus Villemoes <[email protected]>2014-10-13 22:54:27 +0000
committerLinus Torvalds <[email protected]>2014-10-14 00:18:23 +0000
commitb0bfb63118612e3614cf77b115c00f895a42c96a (patch)
tree157abeb836d57d27bad8a00582af49a2a78d3441 /lib/string.c
parentlib/string.c: remove duplicated function (diff)
downloadkernel-b0bfb63118612e3614cf77b115c00f895a42c96a.tar.gz
kernel-b0bfb63118612e3614cf77b115c00f895a42c96a.zip
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 <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
Diffstat (limited to 'lib/string.c')
-rw-r--r--lib/string.c1
1 files changed, 1 insertions, 0 deletions
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)
EXPORT_SYMBOL(strncasecmp);
#endif
#ifndef __HAVE_ARCH_STRNICMP
+#undef strnicmp
int strnicmp(const char *s1, const char *s2, size_t len)
{
return strncasecmp(s1, s2, len);