fc06355cd1
to obsolete code that other software (dia) still use in their 5/20/2001 software release >sigh< -- this fixes the reported dia breakage on ports@
30 lines
1.0 KiB
Plaintext
30 lines
1.0 KiB
Plaintext
--- lib/plug-ins.c.orig Fri Jun 1 02:01:37 2001
|
|
+++ lib/plug-ins.c Fri Jun 1 02:01:50 2001
|
|
@@ -435,7 +435,7 @@ plugin_load_inhibited(const gchar *filen
|
|
|
|
ensure_pluginrc();
|
|
for (node = pluginrc->root->childs; node != NULL; node = node->next) {
|
|
- CHAR *node_filename;
|
|
+ xmlChar *node_filename;
|
|
|
|
if (node->type != XML_ELEMENT_NODE || strcmp(node->name, "plugin") != 0)
|
|
continue;
|
|
@@ -472,7 +472,7 @@ info_fill_from_pluginrc(PluginInfo *info
|
|
|
|
ensure_pluginrc();
|
|
for (node = pluginrc->root->childs; node != NULL; node = node->next) {
|
|
- CHAR *node_filename;
|
|
+ xmlChar *node_filename;
|
|
|
|
if (node->type != XML_ELEMENT_NODE || strcmp(node->name, "plugin") != 0)
|
|
continue;
|
|
@@ -524,7 +524,7 @@ dia_pluginrc_write(void)
|
|
datanode = xmlNewChild(pluginnode, NULL, "inhibit-load", NULL);
|
|
|
|
for (node = pluginrc->root->childs; node != NULL; node = node->next) {
|
|
- CHAR *node_filename;
|
|
+ xmlChar *node_filename;
|
|
|
|
if (node->type != XML_ELEMENT_NODE || strcmp(node->name, "plugin") != 0)
|
|
continue;
|