(NLS_STRNCMP) [!ENABLE_NLS]: s/strcmp/strncmp/
authorJim Meyering <jim@meyering.net>
Sun, 26 Oct 1997 04:42:02 +0000 (04:42 +0000)
committerJim Meyering <jim@meyering.net>
Sun, 26 Oct 1997 04:42:02 +0000 (04:42 +0000)
src/sort.c

index b2425850e74620e06f2a3771943b117a7d565195..add9779d0c68ec2cadf7489a893f08ea814db40e 100644 (file)
@@ -83,7 +83,7 @@ char *xstrdup ();
 # define NLS_STRNCMP(S1, S2, Len) strncoll_s2_readonly (S1, S2, Len)
 #else
 # define NLS_MEMCMP(S1, S2, Len) memcmp (S1, S2, Len)
-# define NLS_STRNCMP(S1, S2, Len) strcmp (S1, S2, Len)
+# define NLS_STRNCMP(S1, S2, Len) strncmp (S1, S2, Len)
 #endif
 
 #ifdef ENABLE_NLS