summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2004-03-13 15:08:12 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2004-03-13 15:08:12 +0100
commit99f54a7780293b109edafd48d90c53619ba00de7 (patch)
tree8642d0929aa9138276de4a5cc8092f33252d4d91
parent56b624d20921863e6a212ba139a09383de382a23 (diff)
downloadvdr-99f54a7780293b109edafd48d90c53619ba00de7.tar.gz
vdr-99f54a7780293b109edafd48d90c53619ba00de7.tar.bz2
Added a separator between the long text and the items
-rw-r--r--libsi/descriptor.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/libsi/descriptor.c b/libsi/descriptor.c
index a9eaf044..82e2a8f3 100644
--- a/libsi/descriptor.c
+++ b/libsi/descriptor.c
@@ -6,7 +6,7 @@
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
- * $Id: descriptor.c 1.9 2004/03/13 11:07:02 kls Exp $
+ * $Id: descriptor.c 1.10 2004/03/13 15:08:12 kls Exp $
* *
***************************************************************************/
@@ -107,6 +107,8 @@ char *ExtendedEventDescriptors::getText(char *buffer, const char *separation1, c
if (!d)
continue;
+ strcpy(buffer+index, separation2); // let's have a separator between the long text and the items
+ index += strlen(separation2);
ExtendedEventDescriptor::Item item;
for (Loop::Iterator it; d->itemLoop.hasNext(it); ) {
item=d->itemLoop.getNext(it);