]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - scheduler/util.c
Merge changes from CUPS 1.5b1-r9798.
[thirdparty/cups.git] / scheduler / util.c
index 25c49ef0a7817032984e4a9f292d86671c5cfae8..95c294dd71b0267c07054a3609f9b7fac7d703f9 100644 (file)
 #ifdef __APPLE__
 #  include <libgen.h>
 extern char **environ;
-#endif /* __APPLE__ */ 
+#endif /* __APPLE__ */
 
 
 /*
  * 'cupsdCompareNames()' - Compare two names.
  *
- * This function basically does a strcasecmp() of the two strings,
+ * This function basically does a _cups_strcasecmp() of the two strings,
  * but is also aware of numbers so that "a2" < "a100".
  */
 
@@ -91,7 +91,7 @@ cupsdCompareNames(const char *s,      /* I - First string */
       else if (!isdigit(*s & 255) && isdigit(*t & 255))
         return (-1);
       else if (!isdigit(*s & 255) || !isdigit(*t & 255))
-        continue;     
+        continue;
 
       if (*s < *t)
         diff = -1;