1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-06-16 06:15:24 +00:00

Revert "Fix: Corrected use of XMLSTR()"

This reverts commit fd2556b4c0.

See libxml2's 4472c3a5a5b516aaf59b89be602fbce52756c3e9.
This commit is contained in:
Philipp Schafft 2018-10-11 11:04:46 +00:00
parent 9b49c2bae3
commit eb66a682c0

View File

@ -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);