1
0
mirror of https://gitlab.xiph.org/xiph/ezstream.git synced 2025-01-03 14:56:35 -05:00

Fix setting of the stream name

Regression found and reported by zygmund2000 on Github
This commit is contained in:
Moritz Grimm 2020-02-22 22:39:43 +01:00
parent 7b7c42bfbe
commit 6eb8e19664
2 changed files with 2 additions and 0 deletions

1
NEWS
View File

@ -1,6 +1,7 @@
Changes in 1.0.1, released on XXXX-XX-XX:
* Fix a crash if there is a typo in the <encoder /> setting
* Fix regression setting the stream name. From zygmund2000 on Github.
* Minor example and documentation tweaks

View File

@ -155,6 +155,7 @@ _cfgfile_xml_parse_stream(xmlDocPtr doc, xmlNodePtr cur)
XML_STREAM_SET(s, sl, cfg_stream_set_public, "public");
XML_STREAM_SET(s, sl, cfg_stream_set_format, "format");
XML_STREAM_SET(s, sl, cfg_stream_set_encoder, "encoder");
XML_STREAM_SET(s, sl, cfg_stream_set_stream_name, "stream_name");
XML_STREAM_SET(s, sl, cfg_stream_set_stream_url, "stream_url");
XML_STREAM_SET(s, sl, cfg_stream_set_stream_genre, "stream_genre");
XML_STREAM_SET(s, sl, cfg_stream_set_stream_description, "stream_description");