mirror of
https://gitlab.xiph.org/xiph/ezstream.git
synced 2024-11-03 04:17:18 -05:00
D'oh! Make <stream_once/> work with playlists as well. Problem description
found in the Icecast mailing list archive, in a mail by Geoff Shang, via Google. Let's hope that the bug tracker prevents this kind of bug hunting in the future ... git-svn-id: https://svn.xiph.org/trunk/ezstream@13272 0101bb08-14d6-0310-b084-bc0e0c8e3800
This commit is contained in:
parent
d761ddc979
commit
af6479c0d9
8
NEWS
8
NEWS
@ -1,3 +1,11 @@
|
||||
Changes in 0.4.2 (SVN):
|
||||
|
||||
* src/ezstream.c:
|
||||
- [FIX] Make <stream_once/> work with playlists, too. Problem found by
|
||||
Geoff Shang <geoff at quitelikely dot com>.
|
||||
|
||||
|
||||
|
||||
Changes in 0.4.1, released on 2007-07-15:
|
||||
|
||||
* src/ezstream.c:
|
||||
|
@ -1291,14 +1291,14 @@ main(int argc, char *argv[])
|
||||
|
||||
ret = 1;
|
||||
do {
|
||||
if (playlistMode)
|
||||
if (playlistMode) {
|
||||
ret = streamPlaylist(shout,
|
||||
pezConfig->fileName);
|
||||
else {
|
||||
} else {
|
||||
ret = streamFile(shout, pezConfig->fileName);
|
||||
}
|
||||
if (pezConfig->streamOnce)
|
||||
break;
|
||||
}
|
||||
} while (ret);
|
||||
} else
|
||||
printf("%s: Connection to http://%s:%d%s failed: %s\n", __progname,
|
||||
|
Loading…
Reference in New Issue
Block a user