mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-12-04 14:46:30 -05:00
Cleanup: Corrected code formating
This commit is contained in:
parent
7fdc9ed11f
commit
0a026c8b45
18
src/xslt.c
18
src/xslt.c
@ -356,19 +356,19 @@ void xslt_transform(xmlDocPtr doc, const char *xslfilename, client_t *client, in
|
||||
if (cur->encoding)
|
||||
charset = (char *)cur->encoding;
|
||||
|
||||
if (cur->mediaType)
|
||||
if (cur->mediaType) {
|
||||
mediatype = (char *)cur->mediaType;
|
||||
else
|
||||
{
|
||||
} else {
|
||||
/* check method for the default, a missing method assumes xml */
|
||||
if (cur->method && xmlStrcmp (cur->method, XMLSTR("html")) == 0)
|
||||
if (cur->method && xmlStrcmp(cur->method, XMLSTR("html")) == 0) {
|
||||
mediatype = "text/html";
|
||||
else
|
||||
if (cur->method && xmlStrcmp (cur->method, XMLSTR("text")) == 0)
|
||||
mediatype = "text/plain";
|
||||
else
|
||||
mediatype = "text/xml";
|
||||
} else if (cur->method && xmlStrcmp(cur->method, XMLSTR("text")) == 0) {
|
||||
mediatype = "text/plain";
|
||||
} else {
|
||||
mediatype = "text/xml";
|
||||
}
|
||||
}
|
||||
|
||||
if (problem == 0)
|
||||
{
|
||||
ssize_t ret;
|
||||
|
Loading…
Reference in New Issue
Block a user