mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 12:43:29 +02:00
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>
This commit is contained in:
committed by
Linus Torvalds
parent
cd514e727b
commit
b0bfb63118
@@ -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);
|
||||
|
Reference in New Issue
Block a user