From 3b8e8cc97f3e02b0313f58206e0d6043a668fca9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Janouch?= Date: Sat, 2 May 2015 22:49:51 +0200 Subject: [PATCH] config: fix string parsing --- common.c | 1 + 1 file changed, 1 insertion(+) diff --git a/common.c b/common.c index 43b9bfb..a8a4afc 100644 --- a/common.c +++ b/common.c @@ -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;