summaryrefslogtreecommitdiff
path: root/libsi
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2004-01-04 14:26:53 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2004-01-04 14:26:53 +0100
commit06688d22ea373d6a08d991a04e524794498d519e (patch)
treea06f87a1b49bc3fe3b077f150b02f22d6e3eab2a /libsi
parent97c3658803cb3e9ece2836008805d52b57260cd6 (diff)
downloadvdr-06688d22ea373d6a08d991a04e524794498d519e.tar.gz
vdr-06688d22ea373d6a08d991a04e524794498d519e.tar.bz2
Now delivering control character 0x86 and 0x87, which some stations use to mark short names
Diffstat (limited to 'libsi')
-rw-r--r--libsi/si.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libsi/si.c b/libsi/si.c
index e3fb884b..bcf519a8 100644
--- a/libsi/si.c
+++ b/libsi/si.c
@@ -6,7 +6,7 @@
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
- * $Id: si.c 1.2 2003/12/13 10:42:16 kls Exp $
+ * $Id: si.c 1.3 2004/01/04 14:26:53 kls Exp $
* *
***************************************************************************/
@@ -225,7 +225,7 @@ void String::decodeText(char *buffer) {
else if (*from == 0x8A)
*to++ = '\n';
else if (*from == 0x86 || *from == 0x87) //&& !(GDT_NAME_DESCRIPTOR & type))
- *to++ = ' ';
+ *to++ = *from;
from++;
}
*to = '\0';