mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Empty lines in config files no longer cause error messages
This commit is contained in:
parent
ab626eecd3
commit
eb8bd1e754
2
HISTORY
2
HISTORY
@ -449,4 +449,4 @@ Video Disk Recorder Revision History
|
||||
of terminating with 'abort()' (which caused a core dump).
|
||||
- SVDRP now also works with clients that don't do line buffering (like the
|
||||
Windows 'telnet').
|
||||
|
||||
- Empty lines in config files no longer cause error messages.
|
||||
|
6
config.c
6
config.c
@ -4,7 +4,7 @@
|
||||
* See the main source file 'vdr.c' for copyright information and
|
||||
* how to reach the author.
|
||||
*
|
||||
* $Id: config.c 1.43 2001/02/24 13:20:18 kls Exp $
|
||||
* $Id: config.c 1.44 2001/04/01 14:32:22 kls Exp $
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
@ -75,6 +75,7 @@ bool cKeys::Load(const char *FileName)
|
||||
result = true;
|
||||
while (fgets(buffer, sizeof(buffer), f) > 0) {
|
||||
line++;
|
||||
if (!isempty(buffer)) {
|
||||
char *Name = buffer;
|
||||
char *p = strpbrk(Name, " \t");
|
||||
if (p) {
|
||||
@ -107,6 +108,7 @@ bool cKeys::Load(const char *FileName)
|
||||
result = false;
|
||||
break;
|
||||
}
|
||||
}
|
||||
fclose(f);
|
||||
}
|
||||
else
|
||||
@ -782,12 +784,14 @@ bool cSetup::Load(const char *FileName)
|
||||
bool result = true;
|
||||
while (fgets(buffer, sizeof(buffer), f) > 0) {
|
||||
line++;
|
||||
if (!isempty(buffer)) {
|
||||
if (*buffer != '#' && !Parse(buffer)) {
|
||||
esyslog(LOG_ERR, "error in %s, line %d\n", fileName, line);
|
||||
result = false;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
fclose(f);
|
||||
return result;
|
||||
}
|
||||
|
4
config.h
4
config.h
@ -4,7 +4,7 @@
|
||||
* See the main source file 'vdr.c' for copyright information and
|
||||
* how to reach the author.
|
||||
*
|
||||
* $Id: config.h 1.43 2001/03/18 16:47:00 kls Exp $
|
||||
* $Id: config.h 1.44 2001/04/01 14:44:40 kls Exp $
|
||||
*/
|
||||
|
||||
#ifndef __CONFIG_H
|
||||
@ -184,6 +184,7 @@ public:
|
||||
result = true;
|
||||
while (fgets(buffer, sizeof(buffer), f) > 0) {
|
||||
line++;
|
||||
if (!isempty(buffer)) {
|
||||
T *l = new T;
|
||||
if (l->Parse(buffer))
|
||||
Add(l);
|
||||
@ -194,6 +195,7 @@ public:
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
fclose(f);
|
||||
}
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user