diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2018-02-15 14:41:14 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2018-02-15 14:41:14 +0100 |
commit | a4343bdfd9e2f200bf89760f8eb45c56398bef67 (patch) | |
tree | 0cdccdc311d696e8e064814e594a6e4b9bd2c708 /config.c | |
parent | 940e4a7c4d0d187f0b3583cffc78606103ff827b (diff) | |
download | vdr-a4343bdfd9e2f200bf89760f8eb45c56398bef67.tar.gz vdr-a4343bdfd9e2f200bf89760f8eb45c56398bef67.tar.bz2 |
Fixed case inconsistency with SVDRPDefaultHost
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: config.c 4.7 2017/12/09 14:17:02 kls Exp $ + * $Id: config.c 4.8 2018/02/15 14:40:36 kls Exp $ */ #include "config.h" @@ -642,7 +642,7 @@ bool cSetup::Parse(const char *Name, const char *Value) else if (!strcasecmp(Name, "SVDRPTimeout")) SVDRPTimeout = atoi(Value); else if (!strcasecmp(Name, "SVDRPPeering")) SVDRPPeering = atoi(Value); else if (!strcasecmp(Name, "SVDRPHostName")) { if (*Value) strn0cpy(SVDRPHostName, Value, sizeof(SVDRPHostName)); } - else if (!strcasecmp(Name, "SVDRPdefaultHost")) strn0cpy(SVDRPDefaultHost, Value, sizeof(SVDRPDefaultHost)); + else if (!strcasecmp(Name, "SVDRPDefaultHost")) strn0cpy(SVDRPDefaultHost, Value, sizeof(SVDRPDefaultHost)); else if (!strcasecmp(Name, "ZapTimeout")) ZapTimeout = atoi(Value); else if (!strcasecmp(Name, "ChannelEntryTimeout")) ChannelEntryTimeout= atoi(Value); else if (!strcasecmp(Name, "RcRepeatDelay")) RcRepeatDelay = atoi(Value); |