diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-11-09 00:29:09 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-11-09 00:29:09 +0000 |
commit | c3eabe01dafec8b16f04824b74b365a7ebffb866 (patch) | |
tree | 3b0194afb68bf3493b8ec59482b2fefa28a24715 | |
parent | b7315f839161d940e0e9ae1363d1e74b15e73d72 (diff) | |
download | mpd-c3eabe01dafec8b16f04824b74b365a7ebffb866.tar.gz mpd-c3eabe01dafec8b16f04824b74b365a7ebffb866.tar.xz mpd-c3eabe01dafec8b16f04824b74b365a7ebffb866.zip |
try one other thing to fix icecast dropping clients
git-svn-id: https://svn.musicpd.org/mpd/trunk@2554 09075e82-0dd4-0310-85a5-a0d7c8717e4f
-rw-r--r-- | src/audioOutputs/audioOutput_shout.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/audioOutputs/audioOutput_shout.c b/src/audioOutputs/audioOutput_shout.c index 81da40cde..6d228fa02 100644 --- a/src/audioOutputs/audioOutput_shout.c +++ b/src/audioOutputs/audioOutput_shout.c @@ -340,6 +340,7 @@ static int write_page(ShoutData * sd) { if(myShout_handleError(sd, err) < 0) return -1; err = shout_send(sd->shoutConn, sd->og.body, sd->og.body_len); if(myShout_handleError(sd, err) < 0) return -1; + shout_sync(sd->shoutConn); return 0; } |