When comparing two config section headers it incorrectly handled matching section names where only one had a subsection value Signed-off-by: Justin Mitchell <jumitche@xxxxxxxxxx> --- support/nfs/conffile.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/support/nfs/conffile.c b/support/nfs/conffile.c index d20460e..51b85f2 100644 --- a/support/nfs/conffile.c +++ b/support/nfs/conffile.c @@ -727,6 +727,8 @@ retry: continue; if (arg && (cb->arg == NULL || strcasecmp(arg, cb->arg) != 0)) continue; + if (!arg && cb->arg) + continue; if (strcasecmp(tag, cb->tag) != 0) continue; if (cb->value[0] == '$') { -- 1.8.3.1 -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html