From a2e2acba2364ff90d8e1f3e7ec9f0be795c74ba0 Mon Sep 17 00:00:00 2001 From: "Alan T. DeKok" Date: Mon, 17 Feb 2014 20:54:01 -0500 Subject: [PATCH] Fix typo in last commit --- src/main/conffile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/conffile.c b/src/main/conffile.c index bb1163b7f00a..ff818ca8126d 100644 --- a/src/main/conffile.c +++ b/src/main/conffile.c @@ -2345,7 +2345,7 @@ CONF_SECTION *cf_section_sub_find(CONF_SECTION const *cs, char const *name) { CONF_SECTION mycs; - if (!cs || name) return NULL; /* can't find an un-named section */ + if (!cs || !name) return NULL; /* can't find an un-named section */ /* * No sub-sections have been defined, so none exist.