]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - cups/string.c
Merge changes from CUPS 1.5svn-r9313.
[thirdparty/cups.git] / cups / string.c
index 96f6728a84dec6cdf967948653711838f9c2d763..f40f5f5fb5c9ae6af8398756b026366005e06749 100644 (file)
@@ -36,6 +36,7 @@
  * Include necessary headers...
  */
 
+#define _CUPS_STRING_C_
 #include "string-private.h"
 #include "debug-private.h"
 #include "thread-private.h"
@@ -401,7 +402,7 @@ _cupsStrScand(const char   *buf,    /* I - Pointer to number */
   * Skip leading whitespace...
   */
 
-  while (isspace(*buf & 255))
+  while (_cups_isspace(*buf))
     buf ++;
 
  /*