]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - cgi-bin/makedocset.c
Merge changes from CUPS 1.5b1-r9798.
[thirdparty/cups.git] / cgi-bin / makedocset.c
index 7d90c807326aeedd8acaf05489033f7ed4168a5d..5772828893ed481bb21018226669847669e50b7c 100644 (file)
@@ -3,7 +3,7 @@
  *
  *   Xcode documentation set generator.
  *
- *   Copyright 2007-2009 by Apple Inc.
+ *   Copyright 2007-2011 by Apple Inc.
  *   Copyright 1997-2007 by Easy Software Products.
  *
  *   These coded instructions, statements, and computer programs are the
@@ -171,7 +171,7 @@ static int                          /* O - Result of comparison */
 compare_html(_cups_html_t *a,          /* I - First file */
              _cups_html_t *b)          /* I - Second file */
 {
-  return (strcasecmp(a->title, b->title));
+  return (_cups_strcasecmp(a->title, b->title));
 }
 
 
@@ -183,7 +183,7 @@ static int                          /* O - Result of comparison */
 compare_sections(_cups_section_t *a,   /* I - First section */
                  _cups_section_t *b)   /* I - Second section */
 {
-  return (strcasecmp(a->name, b->name));
+  return (_cups_strcasecmp(a->name, b->name));
 }
 
 
@@ -201,7 +201,7 @@ compare_sections_files(
   if (ret)
     return (ret);
   else
-    return (strcasecmp(a->name, b->name));
+    return (_cups_strcasecmp(a->name, b->name));
 }
 
 
@@ -442,7 +442,7 @@ write_nodes(const char   *path,             /* I - File to write */
         cupsFilePuts(fp, "<Subnodes>\n");
        subnodes = 1;
       }
-       
+
       cupsFilePrintf(fp, "<Node id=\"%d\">\n"
                          "<Path>Documentation/%s</Path>\n"
                         "<Anchor>%s</Anchor>\n"