diff --git a/src/conf-parser.c b/src/conf-parser.c index a6d4d92aa29..13f873869fe 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;