From 4bdf936730f4f55fdabdd496cbfaffbfa914198b Mon Sep 17 00:00:00 2001 From: patacongo Date: Sat, 28 Mar 2009 13:11:43 +0000 Subject: [PATCH] Cloning error in functin name git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1648 42af7a65-404d-4744-a932-0658087f49c3 --- lib/lib_strncasecmp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/lib_strncasecmp.c b/lib/lib_strncasecmp.c index 3fc26baf6f9..11d4991616f 100644 --- a/lib/lib_strncasecmp.c +++ b/lib/lib_strncasecmp.c @@ -51,8 +51,8 @@ * Global Functions *****************************************************************************/ -#ifndef CONFIG_ARCH_STRNCMP -int strncmp(const char *cs, const char *ct, size_t nb) +#ifndef CONFIG_ARCH_STRNCASECMP +int strncasecmp(const char *cs, const char *ct, size_t nb) { register signed char result = 0; for (; nb > 0; nb--)