summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--conf.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/conf.c b/conf.c
index 96e4d60..aef4cbf 100644
--- a/conf.c
+++ b/conf.c
@@ -155,12 +155,11 @@ static int parse_one_file(config_t *config, const char *filename, char **section
strsep(&val, "=");
strtrim(line);
+ strtrim(val);
if(strcmp(line, "Include") == 0) {
int k;
- strtrim(val);
-
k = parse_include(config, val, section);
if(k < 0) {
return k;