summaryrefslogtreecommitdiff
path: root/conf.c
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2011-11-26 15:22:50 +0100
committerGravatar waker <wakeroid@gmail.com>2011-11-26 15:22:50 +0100
commit088d8259a2dac2bd89fd1ad958d69ee0a46953df (patch)
treead5133647279609a1b6f3dc6ba66b4da15e8b127 /conf.c
parentf9f579fc98a1ee81823f0a5741f3ee8468bea4e3 (diff)
allow blank values in config variables
Diffstat (limited to 'conf.c')
-rw-r--r--conf.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/conf.c b/conf.c
index f875d349..6d82f805 100644
--- a/conf.c
+++ b/conf.c
@@ -89,10 +89,6 @@ conf_load (void) {
while (*p && *p <= 0x20) {
p++;
}
- if (!*p) {
- fprintf (stderr, "error in config file line %d\n", line);
- continue;
- }
char *value = p;
// remove trailing trash
while (*p && *p >= 0x20) {