use the URL notation file:// for default catalog paths Daniel

* catalog.c: use the URL notation file:// for default catalog paths
Daniel
diff --git a/ChangeLog b/ChangeLog
index 3dce749..6e59ec2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Thu Nov 15 14:53:42 CET 2001 Daniel Veillard <daniel@veillard.com>
+
+	* catalog.c: use the URL notation file:// for default catalog paths
+
 Wed Nov 14 16:03:02 CET 2001 Daniel Veillard <daniel@veillard.com>
 
 	* include/libxml/tree.h: better comments for _private fields
diff --git a/catalog.c b/catalog.c
index e5798ee..293b1b3 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);