put strip_whitespace back

This commit is contained in:
taiyu 2015-09-07 14:40:23 -07:00
parent 71af5b7dde
commit 47ff000697
2 changed files with 15 additions and 9 deletions

View file

@ -230,6 +230,7 @@ bool read_config(FILE *file, bool is_active) {
char *line;
while (!feof(file)) {
line = read_line(file);
line = strip_whitespace(line);
line = strip_comments(line);
if (line[0] == '\0') {
goto _continue;