summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorphelin <phelin>2008-01-24 21:18:09 +0000
committerphelin <phelin>2008-01-24 21:18:09 +0000
commit5d398d53377e805722a6ea17d701cbf9d8732442 (patch)
tree08b4a96df0a5fab08f545cc9467f121090b1bd8f
parent5649d38379576ea5b0bf53ce0adf5f1b35b713b8 (diff)
downloadxineliboutput-5d398d53377e805722a6ea17d701cbf9d8732442.tar.gz
xineliboutput-5d398d53377e805722a6ea17d701cbf9d8732442.tar.bz2
Change the delimiter for metainfo handling from ' to @ (apostrophe is quite more common...).
-rw-r--r--xine_input_vdr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/xine_input_vdr.c b/xine_input_vdr.c
index 84c5b97c..82985997 100644
--- a/xine_input_vdr.c
+++ b/xine_input_vdr.c
@@ -4,7 +4,7 @@
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
- * $Id: xine_input_vdr.c,v 1.112 2008-01-24 09:21:07 phintuka Exp $
+ * $Id: xine_input_vdr.c,v 1.113 2008-01-24 21:18:09 phelin Exp $
*
*/
@@ -2625,7 +2625,7 @@ static void send_meta_info(vdr_input_plugin_t *this)
char *tracknumber = (char *)xine_get_meta_info(this->slave_stream, XINE_META_INFO_TRACK_NUMBER);
asprintf(&meta,
- "INFO METAINFO title=\'%s\' artist=\'%s\' album=\'%s\' tracknumber=\'%s\'\r\n",
+ "INFO METAINFO title=@%s@ artist=@%s@ album=@%s@ tracknumber=@%s@\r\n",
title?:"", artist?:"", album?:"", tracknumber?:"");
if(this->fd_control < 0)