From: Peter Johnson Date: Sun, 2 Dec 2001 06:42:39 +0000 (-0000) Subject: Fix typo in HAVE_STRCMPI strncasecmp() #define. X-Git-Tag: v0.1.0~157 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a64ee74f8f639908c5e2e7da954009c0bf55e4cc;p=yasm Fix typo in HAVE_STRCMPI strncasecmp() #define. svn path=/trunk/yasm/; revision=373 --- diff --git a/libyasm/util.h b/libyasm/util.h index a722c57b..70a63453 100644 --- a/libyasm/util.h +++ b/libyasm/util.h @@ -78,7 +78,7 @@ int mergesort(void *base, size_t nmemb, size_t size, # define strncasecmp(x, y) strnicmp(x, y) # elif HAVE_STRCMPI # define strcasecmp(x, y) strcmpi(x, y) -# define strcasecmp(x, y) strncmpi(x, y) +# define strncasecmp(x, y) strncmpi(x, y) # else # define USE_OUR_OWN_STRCASECMP # endif diff --git a/src/util.h b/src/util.h index a722c57b..70a63453 100644 --- a/src/util.h +++ b/src/util.h @@ -78,7 +78,7 @@ int mergesort(void *base, size_t nmemb, size_t size, # define strncasecmp(x, y) strnicmp(x, y) # elif HAVE_STRCMPI # define strcasecmp(x, y) strcmpi(x, y) -# define strcasecmp(x, y) strncmpi(x, y) +# define strncasecmp(x, y) strncmpi(x, y) # else # define USE_OUR_OWN_STRCASECMP # endif diff --git a/util.h b/util.h index a722c57b..70a63453 100644 --- a/util.h +++ b/util.h @@ -78,7 +78,7 @@ int mergesort(void *base, size_t nmemb, size_t size, # define strncasecmp(x, y) strnicmp(x, y) # elif HAVE_STRCMPI # define strcasecmp(x, y) strcmpi(x, y) -# define strcasecmp(x, y) strncmpi(x, y) +# define strncasecmp(x, y) strncmpi(x, y) # else # define USE_OUR_OWN_STRCASECMP # endif