summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorphintuka <phintuka>2010-07-09 21:31:37 +0000
committerphintuka <phintuka>2010-07-09 21:31:37 +0000
commita813e3efe916fda65893c9fa8664d1d4aa33e00c (patch)
treeca258b61d449ba86b92accb22153bc28502218a7
parentacb93bd3b253c892947370faed6ec156529be4a8 (diff)
downloadxineliboutput-a813e3efe916fda65893c9fa8664d1d4aa33e00c.tar.gz
xineliboutput-a813e3efe916fda65893c9fa8664d1d4aa33e00c.tar.bz2
Added missing CRLF to TRICKSPEED control message for new clients.
Closes #3017960
-rw-r--r--frontend_svr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend_svr.c b/frontend_svr.c
index bd8eca9d..b92a2571 100644
--- a/frontend_svr.c
+++ b/frontend_svr.c
@@ -4,7 +4,7 @@
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
- * $Id: frontend_svr.c,v 1.94 2010-06-02 10:27:59 phintuka Exp $
+ * $Id: frontend_svr.c,v 1.95 2010-07-09 21:31:37 phintuka Exp $
*
*/
@@ -1167,7 +1167,7 @@ void cXinelibServer::Handle_Control_CONFIG(int cli)
fd_control[cli].printf("NOVIDEO %d\r\nLIVE %d\r\n",
m_bNoVideo?1:0, m_bLiveMode?1:0);
- fd_control[cli].printf("TRICKSPEED %d%s",
+ fd_control[cli].printf("TRICKSPEED %d%s\r\n",
m_TrickSpeed, m_bTrickSpeedBack ? " Backwards" : "");
SetVolume(m_Volume);