From: Kevin P. Fleming Date: Fri, 7 Nov 2008 03:09:16 +0000 (+0000) Subject: correct logic error noticed by rmudgett (thanks!) X-Git-Tag: 1.6.2.0-beta1~917 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=210df649a2efaed02f294af96ffe3072398ed3d6;p=thirdparty%2Fasterisk.git correct logic error noticed by rmudgett (thanks!) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@155206 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- 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;