diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2002-04-01 12:01:00 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2002-04-01 12:01:00 +0200 |
commit | 53ecd4181000f9d16ac34309a900d4d89bb0d93c (patch) | |
tree | 962405c0eb6d29ba66d373617abacaa7ca32d139 /config.c | |
parent | f4d94887188fc34d9a3101eb18c061d49acbb02e (diff) | |
download | vdr-53ecd4181000f9d16ac34309a900d4d89bb0d93c.tar.gz vdr-53ecd4181000f9d16ac34309a900d4d89bb0d93c.tar.bz2 |
Fixed a bug in parsing group separators in channels.conf
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: config.c 1.95 2002/04/01 10:54:32 kls Exp $ + * $Id: config.c 1.96 2002/04/01 11:54:05 kls Exp $ */ #include "config.h" @@ -248,6 +248,7 @@ bool cChannel::Parse(const char *s) strn0cpy(name, s, MaxChannelName); name[strlen(name) - 1] = 0; // strip the '\n' groupSep = true; + number = 0; } else return false; |