mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
Don't reload a configuration file if nothing has changed.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@79747 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -2768,6 +2768,7 @@ static int load_config(void)
|
||||
struct ast_config *cfg = NULL;
|
||||
struct ast_variable *var = NULL;
|
||||
struct feature_group *fg = NULL;
|
||||
struct ast_flags config_flags = { 0 };
|
||||
char old_parking_ext[AST_MAX_EXTENSION];
|
||||
char old_parking_con[AST_MAX_EXTENSION] = "";
|
||||
char *ctg;
|
||||
@@ -2810,7 +2811,7 @@ static int load_config(void)
|
||||
atxferdropcall = DEFAULT_ATXFER_DROP_CALL;
|
||||
atxfercallbackretries = DEFAULT_ATXFER_CALLBACK_RETRIES;
|
||||
|
||||
cfg = ast_config_load("features.conf");
|
||||
cfg = ast_config_load("features.conf", config_flags);
|
||||
if (!cfg) {
|
||||
ast_log(LOG_WARNING,"Could not load features.conf\n");
|
||||
return AST_MODULE_LOAD_DECLINE;
|
||||
|
Reference in New Issue
Block a user