From 827119a9cbf617aa42eef63e5b99e981776c744a Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 22 Jun 2010 04:09:26 +0200 Subject: [PATCH] conf-parser: check all parse callbacks --- src/conf-parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/conf-parser.c b/src/conf-parser.c index a6d4d92aa..13f873869 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; -- 2.30.2