diff options
Diffstat (limited to 'src/conf-parser.c')
-rw-r--r-- | src/conf-parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf-parser.c b/src/conf-parser.c index a6d4d92aa2..13f873869f 100644 --- a/src/conf-parser.c +++ b/src/conf-parser.c @@ -50,7 +50,7 @@ static int next_assignment( assert(lvalue); assert(rvalue); - for (; t->parse; t++) { + for (; t->parse || t->lvalue; t++) { if (t->lvalue && !streq(lvalue, t->lvalue)) continue; |