mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-12-04 14:46:30 -05:00
Revert "Fix: Corrected use of XMLSTR()"
This reverts commit fd2556b4c0
.
See libxml2's 4472c3a5a5b516aaf59b89be602fbce52756c3e9.
This commit is contained in:
parent
9b49c2bae3
commit
eb66a682c0
@ -280,7 +280,7 @@ static xmlDocPtr custom_loader(const xmlChar *URI,
|
||||
/* Append path separator to path */
|
||||
size_t len = strlen(config->adminroot_dir);
|
||||
xmlChar* admin_path = xmlMalloc(len+2);
|
||||
xmlStrPrintf(admin_path, len+2, XMLSTR("%s/"), XMLSTR(config->adminroot_dir));
|
||||
xmlStrPrintf(admin_path, len+2, "%s/", XMLSTR(config->adminroot_dir));
|
||||
|
||||
/* Convert admin path to URI */
|
||||
admin_URI = xmlPathToURI(admin_path);
|
||||
|
Loading…
Reference in New Issue
Block a user