aboutsummaryrefslogtreecommitdiffstats
path: root/catalog.c
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2001-11-15 13:54:39 +0000
committerDaniel Veillard <veillard@src.gnome.org>2001-11-15 13:54:39 +0000
commitf7b094f7ee2a9a7f2f9f05c7390a199c950ec131 (patch)
tree3f979e244ae9f05bef78f2d7c346ff9ea74c2f96 /catalog.c
parent0ec986359adc04677529d5e704ff30bf8e5d3a05 (diff)
downloadandroid_external_libxml2-f7b094f7ee2a9a7f2f9f05c7390a199c950ec131.tar.gz
android_external_libxml2-f7b094f7ee2a9a7f2f9f05c7390a199c950ec131.tar.bz2
android_external_libxml2-f7b094f7ee2a9a7f2f9f05c7390a199c950ec131.zip
use the URL notation file:// for default catalog paths Daniel
* catalog.c: use the URL notation file:// for default catalog paths Daniel
Diffstat (limited to 'catalog.c')
-rw-r--r--catalog.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/catalog.c b/catalog.c
index e5798eea..293b1b3b 100644
--- a/catalog.c
+++ b/catalog.c
@@ -55,10 +55,10 @@
#define XML_URN_PUBID "urn:publicid:"
#define XML_CATAL_BREAK ((xmlChar *) -1)
#ifndef XML_XML_DEFAULT_CATALOG
-#define XML_XML_DEFAULT_CATALOG "/etc/xml/catalog"
+#define XML_XML_DEFAULT_CATALOG "file:///etc/xml/catalog"
#endif
#ifndef XML_SGML_DEFAULT_CATALOG
-#define XML_SGML_DEFAULT_CATALOG "/etc/sgml/catalog"
+#define XML_SGML_DEFAULT_CATALOG "file:///etc/sgml/catalog"
#endif
static int xmlExpandCatalog(xmlCatalogPtr catal, const char *filename);