From 210df649a2efaed02f294af96ffe3072398ed3d6 Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" Date: Fri, 7 Nov 2008 03:09:16 +0000 Subject: [PATCH] correct logic error noticed by rmudgett (thanks!) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@155206 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- pbx/pbx_config.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pbx/pbx_config.c b/pbx/pbx_config.c index 42cae60218..4422557bec 100644 --- a/pbx/pbx_config.c +++ b/pbx/pbx_config.c @@ -1446,7 +1446,9 @@ static int pbx_load_config(const char *config_file) pbx_substitute_variables_helper(NULL, v->value, realvalue, sizeof(realvalue) - 1); pbx_builtin_setvar_helper(NULL, v->name, realvalue); } - for (cxt = NULL; cxt; cxt = ast_category_browse(cfg, cxt)) { + for (cxt = ast_category_browse(cfg, NULL); + cxt; + cxt = ast_category_browse(cfg, cxt)) { /* All categories but "general" or "globals" are considered contexts */ if (!strcasecmp(cxt, "general") || !strcasecmp(cxt, "globals")) { continue;