X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fstrncasecmp.c;h=c44da8367e01491965e6d0a5138e42a941bda12b;hb=b4c2b236d0007a7f9226e6ccef82e9e37bdb2b3a;hp=473a610fe0c96fa26ebe98171be59111e4690a07;hpb=d6890e0f25de35b42e746ecc762426092020c90d;p=gnulib.git diff --git a/lib/strncasecmp.c b/lib/strncasecmp.c index 473a610fe..c44da8367 100644 --- a/lib/strncasecmp.c +++ b/lib/strncasecmp.c @@ -1,5 +1,5 @@ /* strncasecmp.c -- case insensitive string comparator - Copyright (C) 1998-1999, 2005-2007 Free Software Foundation, Inc. + Copyright (C) 1998-1999, 2005-2007, 2009-2011 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -46,7 +46,7 @@ strncasecmp (const char *s1, const char *s2, size_t n) c2 = TOLOWER (*p2); if (--n == 0 || c1 == '\0') - break; + break; ++p1; ++p2;