]> git.ipfire.org Git - thirdparty/bash.git/blobdiff - lib/sh/strcasecmp.c
Imported from ../bash-2.05.tar.gz.
[thirdparty/bash.git] / lib / sh / strcasecmp.c
index 74d98cb53a8e52801215807c27f53225cea82f72..1e15c021cad127399dea379ca85c57f744d8ea1a 100644 (file)
@@ -79,7 +79,7 @@ strcasecmp (string1, string2)
   while ((r = to_lower (*s1) - to_lower (*s2)) == 0)
     {
       if (*s1++ == '\0')
-        return 0;
+       return 0;
       s2++;
     }