From 12d9883261ebdc7c1b8157ad07d27a4a62a0d7ab Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sat, 17 Jan 2004 11:31:12 +0100 Subject: Short channel names are now only stored if they actually differ from the full name --- sdt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sdt.c') diff --git a/sdt.c b/sdt.c index cd427aca..c61c4e29 100644 --- a/sdt.c +++ b/sdt.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: sdt.c 1.5 2004/01/16 14:59:06 kls Exp $ + * $Id: sdt.c 1.6 2004/01/17 11:29:51 kls Exp $ */ #include "sdt.h" @@ -78,7 +78,7 @@ void cSdtFilter::Process(u_short Pid, u_char Tid, const u_char *Data, int Length } *pn = *ps = 0; pn = NameBuf; - if (*NameBuf && *ShortNameBuf) { + if (*NameBuf && *ShortNameBuf && strcmp(NameBuf, ShortNameBuf) != 0) { *ps++ = ','; strcpy(ps, NameBuf); pn = ShortNameBuf; -- cgit v1.2.3