diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2015-05-02 22:49:51 +0200 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2015-05-02 22:49:51 +0200 |
commit | 3b8e8cc97f3e02b0313f58206e0d6043a668fca9 (patch) | |
tree | fc665340c54108178cfd804748ff5bb8a043dc1f /common.c | |
parent | 1b891ab01b22c9edfd050a26484f36c9628635b9 (diff) | |
download | xK-3b8e8cc97f3e02b0313f58206e0d6043a668fca9.tar.gz xK-3b8e8cc97f3e02b0313f58206e0d6043a668fca9.tar.xz xK-3b8e8cc97f3e02b0313f58206e0d6043a668fca9.zip |
config: fix string parsing
Diffstat (limited to 'common.c')
-rw-r--r-- | common.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1123,6 +1123,7 @@ config_tokenizer_next (struct config_tokenizer *self, struct error **e) config_tokenizer_error (self, e, "not a valid UTF-8 string"); return CONFIG_T_ABORT; } + return CONFIG_T_STRING; } char *end; |