mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-12-04 14:46:30 -05:00
Updated <alias> to use destination="" not dest="".
The old dest="" attribute is still supported. svn path=/icecast/trunk/icecast/; revision=18128
This commit is contained in:
parent
f57110d7e5
commit
e157de2321
@ -1,3 +1,11 @@
|
||||
2011-11-25 23:17 ph3-der-loewe
|
||||
|
||||
* trunk/icecast/src/cfgfile.c, trunk/icecast/conf/icecast.xml.in,
|
||||
trunk/icecast/conf/icecast_urlauth.xml.in,
|
||||
trunk/icecast/conf/icecast_minimal.xml.in: Updated <alias>
|
||||
to use destination="" not dest="". The old dest="" attribute
|
||||
is still supported.
|
||||
|
||||
2011-11-25 21:20 ph3-der-loewe
|
||||
|
||||
* trunk/icecast/AUTHORS, trunk/icecast/src/cfgfile.c.
|
||||
|
@ -139,13 +139,13 @@
|
||||
and "bind-address" attributes.
|
||||
-->
|
||||
<!--
|
||||
<alias source="/foo" dest="/bar"/>
|
||||
<alias source="/foo" destination="/bar"/>
|
||||
-->
|
||||
<!-- Aliases: can also be used for simple redirections as well,
|
||||
this example will redirect all requests for http://server:port/ to
|
||||
the status page
|
||||
-->
|
||||
<alias source="/" dest="/status.xsl"/>
|
||||
<alias source="/" destination="/status.xsl"/>
|
||||
</paths>
|
||||
|
||||
<logging>
|
||||
|
@ -25,7 +25,7 @@
|
||||
<logdir>@localstatedir@/log/@PACKAGE@</logdir>
|
||||
<webroot>@pkgdatadir@/web</webroot>
|
||||
<adminroot>@pkgdatadir@/admin</adminroot>
|
||||
<alias source="/" dest="/status.xsl"/>
|
||||
<alias source="/" destination="/status.xsl"/>
|
||||
</paths>
|
||||
<logging>
|
||||
<accesslog>access.log</accesslog>
|
||||
|
@ -34,7 +34,7 @@
|
||||
<logdir>@localstatedir@/log/@PACKAGE@</logdir>
|
||||
<webroot>@pkgdatadir@/web</webroot>
|
||||
<adminroot>@pkgdatadir@/admin</adminroot>
|
||||
<alias source="/" dest="/status.xsl"/>
|
||||
<alias source="/" destination="/status.xsl"/>
|
||||
</paths>
|
||||
<logging>
|
||||
<accesslog>access.log</accesslog>
|
||||
|
@ -986,7 +986,9 @@ static void _parse_paths(xmlDocPtr doc, xmlNodePtr node,
|
||||
free(alias);
|
||||
continue;
|
||||
}
|
||||
alias->destination = (char *)xmlGetProp(node, XMLSTR("dest"));
|
||||
alias->destination = (char *)xmlGetProp(node, XMLSTR("destination"));
|
||||
if (!alias->destination)
|
||||
alias->destination = (char *)xmlGetProp(node, XMLSTR("dest"));
|
||||
if(alias->destination == NULL) {
|
||||
xmlFree(alias->source);
|
||||
free(alias);
|
||||
|
Loading…
Reference in New Issue
Block a user