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:
@@ -1577,12 +1577,13 @@ static int load_module(void)
|
||||
{
|
||||
struct ast_config *cfg = NULL;
|
||||
char *ctg = NULL;
|
||||
struct ast_flags config_flags = { 0 };
|
||||
|
||||
/* Copy the default jb config over global_jbconf */
|
||||
memcpy(&global_jbconf, &default_jbconf, sizeof(struct ast_jb_conf));
|
||||
|
||||
/* load config file */
|
||||
if (!(cfg = ast_config_load(config))) {
|
||||
if (!(cfg = ast_config_load(config, config_flags))) {
|
||||
ast_log(LOG_NOTICE, "Unable to load config %s\n", config);
|
||||
return AST_MODULE_LOAD_DECLINE;
|
||||
}
|
||||
|
Reference in New Issue
Block a user