correct logic error noticed by rmudgett (thanks!)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@155206 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.6.2
Kevin P. Fleming 17 years ago
parent 9cc7bc998b
commit 210df649a2

@ -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_substitute_variables_helper(NULL, v->value, realvalue, sizeof(realvalue) - 1);
pbx_builtin_setvar_helper(NULL, v->name, realvalue); 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 */ /* All categories but "general" or "globals" are considered contexts */
if (!strcasecmp(cxt, "general") || !strcasecmp(cxt, "globals")) { if (!strcasecmp(cxt, "general") || !strcasecmp(cxt, "globals")) {
continue; continue;

Loading…
Cancel
Save