summaryrefslogtreecommitdiff
path: root/components/help/converters/gnome-db2html2/gdb3html.c
diff options
context:
space:
mode:
Diffstat (limited to 'components/help/converters/gnome-db2html2/gdb3html.c')
-rw-r--r--components/help/converters/gnome-db2html2/gdb3html.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/components/help/converters/gnome-db2html2/gdb3html.c b/components/help/converters/gnome-db2html2/gdb3html.c
index 3d458f130..f651c41a9 100644
--- a/components/help/converters/gnome-db2html2/gdb3html.c
+++ b/components/help/converters/gnome-db2html2/gdb3html.c
@@ -35,7 +35,7 @@ ulink_start_element (Context *context, const gchar *name, const xmlChar **atrs)
atrs_ptr = (gchar **) atrs;
while (atrs_ptr && *atrs_ptr) {
- if (!strcasecmp (*atrs_ptr, "url")) {
+ if (!g_strcasecmp (*atrs_ptr, "url")) {
atrs_ptr++;
if (index == UNDEFINED) {
g_print ("<A HREF=\"%s\">", *atrs_ptr);
@@ -200,9 +200,9 @@ start_element(Context *context,
if (element && element->start_element_func)
(* element->start_element_func) (context, name, attrs);
- if (!strcasecmp (name, "xref")) {
+ if (!g_strcasecmp (name, "xref")) {
context->stack = g_list_remove_link (context->stack, context->stack);
- } else if (!strcasecmp (name, "void")) {
+ } else if (!g_strcasecmp (name, "void")) {
context->stack = g_list_remove_link (context->stack, context->stack);
}
}