mirror of
https://github.com/openbsd/ports.git
synced 2026-06-17 23:13:55 +02:00
22 lines
685 B
Plaintext
22 lines
685 B
Plaintext
Index: runtest.c
|
|
--- runtest.c.orig
|
|
+++ runtest.c
|
|
@@ -3470,7 +3470,7 @@ static int
|
|
uripMatch(const char * URI) {
|
|
#ifdef LIBXML_CATALOG_ENABLED
|
|
if ((URI == NULL) ||
|
|
- (!strcmp(URI, "file://" XML_SYSCONFDIR "/xml/catalog")))
|
|
+ (!strcmp(URI, "file:///var/db/xmlcatalog")))
|
|
return(0);
|
|
#endif
|
|
/* Verify we received the escaped URL */
|
|
@@ -3490,7 +3490,7 @@ static void *
|
|
uripOpen(const char * URI) {
|
|
#ifdef LIBXML_CATALOG_ENABLED
|
|
if ((URI == NULL) ||
|
|
- (!strcmp(URI, "file://" XML_SYSCONFDIR "/xml/catalog")))
|
|
+ (!strcmp(URI, "file:///var/db/xmlcatalog")))
|
|
return(NULL);
|
|
#endif
|
|
/* Verify we received the escaped URL */
|