summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--frontend_svr.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/frontend_svr.c b/frontend_svr.c
index d3c92b5b..96a28df7 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.25 2006-10-18 12:50:12 phintuka Exp $
+ * $Id: frontend_svr.c,v 1.26 2006-10-18 13:33:06 phintuka Exp $
*
*/
@@ -1224,7 +1224,8 @@ void cXinelibServer::Handle_Control(int cli, const char *cmd)
}
} else if(!strncmp(cmd, "TRACKMAP ", 9)) {
- cXinelibThread::InfoHandler(cmd);
+ if(!*xc.local_frontend || strncmp(xc.local_frontend, "none", 4))
+ cXinelibThread::InfoHandler(cmd);
} else if(!strncasecmp(cmd, "GRAB ", 5)) {
Handle_Control_GRAB(cli, cmd+5);