summaryrefslogtreecommitdiffstats
path: root/parser-cfg.c
diff options
context:
space:
mode:
Diffstat (limited to 'parser-cfg.c')
-rw-r--r--parser-cfg.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/parser-cfg.c b/parser-cfg.c
index eec28f5bf1..2b1f354d85 100644
--- a/parser-cfg.c
+++ b/parser-cfg.c
@@ -67,7 +67,7 @@ int m_config_parse_config_file(m_config_t* config, char *conffile)
ret = -1;
goto out;
} else
-
+
config->mode = M_CONFIG_FILE;
if ((line = malloc(MAX_LINE_LEN + 1)) == NULL) {
@@ -124,7 +124,7 @@ int m_config_parse_config_file(m_config_t* config, char *conffile)
continue;
}
opt[opt_pos] = '\0';
-
+
/* Profile declaration */
if(opt_pos > 2 && opt[0] == '[' && opt[opt_pos-1] == ']') {
opt[opt_pos-1] = '\0';
@@ -232,7 +232,7 @@ int m_config_parse_config_file(m_config_t* config, char *conffile)
errors++;
continue;
/* break */
- }
+ }
nextline:
;
}