search for: _parse_paths

Displaying 2 results from an estimated 2 matches for "_parse_paths".

2004 Aug 06
1
Icecast2: undefined reference to `xmlDocGetRootElement'
...t+0x313): undefined reference to `xmlIsBlankNode' config.o: In function `_parse_limits': config.o(.text+0x565): undefined reference to `xmlIsBlankNode' config.o: In function `_parse_directory': config.o(.text+0x6f7): undefined reference to `xmlIsBlankNode' config.o: In function `_parse_paths': config.o(.text+0x7a2): undefined reference to `xmlIsBlankNode' config.o: In function `_parse_logging': config.o(.text+0x853): undefined reference to `xmlIsBlankNode' config.o(.text+0x932): more undefined references to `xmlIsBlankNode' follow stats.o: In function `stats_sendxml...
2004 Aug 06
1
[PATCH] IceCast2 - aliasing (reimplementation of the patch I posted earlier)
...+ mount->next = NULL; do { if (node == NULL) break; @@ -474,6 +486,8 @@ else configuration->relay = relay; + relay->next = NULL; + do { if (node == NULL) break; if (xmlIsBlankNode(node)) continue; @@ -606,6 +620,9 @@ static void _parse_paths(xmlDocPtr doc, xmlNodePtr node, ice_config_t *configuration) { + char *temp; + aliases *alias, *current, *last; + do { if (node == NULL) break; if (xmlIsBlankNode(node)) continue; @@ -621,7 +638,39 @@ configuration->webroot_dir = (char *)xmlNod...