minimal changes

This commit is contained in:
Tilka
2012-05-09 23:27:06 +02:00
parent c5516b5729
commit 05fd6bb723
5 changed files with 37 additions and 19 deletions

View File

@@ -73,10 +73,10 @@ struct cfg_tokens* cfg_tokenize(const char* line)
}
break;
case '\"':
case '"':
if (backslash)
{
ADD_CHAR('\"');
ADD_CHAR('"');
backslash = 0;
}
else if (quote)

View File

@@ -258,7 +258,7 @@ int file_read_lines(const char* file, void* data, file_line_handler_t handler)
return 0;
}
/* Parse configuaration */
/* Parse configuration */
split_data.handler = handler;
split_data.data = data;