mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-03 11:25:35 +00:00
it's time... only enable global priority jumping if the config file says to do so
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@32281 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -50,7 +50,7 @@ clearglobalvars=no
|
||||
; of Asterisk). Individual applications can also be requested to do this
|
||||
; by passing a 'j' option in their arguments.
|
||||
;
|
||||
priorityjumping=no
|
||||
;priorityjumping=yes
|
||||
;
|
||||
; You can include other config files, use the #include command
|
||||
; (without the ';'). Note that this is different from the "include" command
|
||||
|
@@ -1358,7 +1358,7 @@ static void pbx_load_config(const char *config_file)
|
||||
write_protect_config = ast_true(ast_variable_retrieve(cfg, "general", "writeprotect"));
|
||||
autofallthrough_config = ast_true(ast_variable_retrieve(cfg, "general", "autofallthrough"));
|
||||
clearglobalvars_config = ast_true(ast_variable_retrieve(cfg, "general", "clearglobalvars"));
|
||||
ast_set2_flag(&ast_options, !ast_false(ast_variable_retrieve(cfg, "general", "priorityjumping")), AST_OPT_FLAG_PRIORITY_JUMPING);
|
||||
ast_set2_flag(&ast_options, ast_true(ast_variable_retrieve(cfg, "general", "priorityjumping")), AST_OPT_FLAG_PRIORITY_JUMPING);
|
||||
|
||||
for (v = ast_variable_browse(cfg, "globals"); v; v = v->next) {
|
||||
memset(realvalue, 0, sizeof(realvalue));
|
||||
|
Reference in New Issue
Block a user