summaryrefslogtreecommitdiff
path: root/scheduler/util.c
diff options
context:
space:
mode:
authormsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>2011-05-20 07:26:13 +0000
committermsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>2011-05-20 07:26:13 +0000
commit88f9aafc49f9c4feb55d1d10daa0e494c22946fc (patch)
treeb0084d66ec8925e4e7e04714ce2f59459413be93 /scheduler/util.c
parent321d8d57dacf00e4ae19558dc9444519f4d9ade1 (diff)
downloadcups-88f9aafc49f9c4feb55d1d10daa0e494c22946fc.tar.gz
Merge changes from CUPS 1.5b1-r9798.
git-svn-id: svn+ssh://src.apple.com/svn/cups/easysw/current@3275 a1ca3aef-8c08-0410-bb20-df032aa958be
Diffstat (limited to 'scheduler/util.c')
-rw-r--r--scheduler/util.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/scheduler/util.c b/scheduler/util.c
index 25c49ef0a..95c294dd7 100644
--- a/scheduler/util.c
+++ b/scheduler/util.c
@@ -36,13 +36,13 @@
#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;