summaryrefslogtreecommitdiff
path: root/cgi-bin/makedocset.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 /cgi-bin/makedocset.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 'cgi-bin/makedocset.c')
-rw-r--r--cgi-bin/makedocset.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/cgi-bin/makedocset.c b/cgi-bin/makedocset.c
index 7d90c8073..577282889 100644
--- a/cgi-bin/makedocset.c
+++ b/cgi-bin/makedocset.c
@@ -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"