mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-03 11:25:35 +00:00
correct logic error noticed by rmudgett (thanks!)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@155206 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user