]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
strncasecmp takes *three* arguments...
authorTed Lemon <source@isc.org>
Mon, 2 Sep 1996 21:18:00 +0000 (21:18 +0000)
committerTed Lemon <source@isc.org>
Mon, 2 Sep 1996 21:18:00 +0000 (21:18 +0000)
cf/qnx.h
includes/cf/qnx.h

index f7c5cce844e44a3ed87b4a002d0b2d438f5bfb26..996ea97e2af8dceef64d657336f44486cd145cdf 100644 (file)
--- a/cf/qnx.h
+++ b/cf/qnx.h
@@ -82,7 +82,7 @@ typedef signed short  int16_t;
 typedef signed long    int32_t;
 
 #define strcasecmp( s1, s2 )                   stricmp( s1, s2 )
-#define strncasecmp( s1, s2 )                  strnicmp( s1, s2 )
+#define strncasecmp( s1, s2, n )               strnicmp( s1, s2, n )
 #define vsnprintf( buf, size, fmt, list )      vsprintf( buf, fbuf, list )
 #define random()                               rand()
 
index f7c5cce844e44a3ed87b4a002d0b2d438f5bfb26..996ea97e2af8dceef64d657336f44486cd145cdf 100644 (file)
@@ -82,7 +82,7 @@ typedef signed short  int16_t;
 typedef signed long    int32_t;
 
 #define strcasecmp( s1, s2 )                   stricmp( s1, s2 )
-#define strncasecmp( s1, s2 )                  strnicmp( s1, s2 )
+#define strncasecmp( s1, s2, n )               strnicmp( s1, s2, n )
 #define vsnprintf( buf, size, fmt, list )      vsprintf( buf, fbuf, list )
 #define random()                               rand()