mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-03 11:25:35 +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:
@@ -83,6 +83,7 @@ static int privacy_exec (struct ast_channel *chan, void *data)
|
||||
char phone[30];
|
||||
struct ast_config *cfg = NULL;
|
||||
char *parse = NULL;
|
||||
struct ast_flags config_flags = { 0 };
|
||||
AST_DECLARE_APP_ARGS(args,
|
||||
AST_APP_ARG(maxretries);
|
||||
AST_APP_ARG(minlength);
|
||||
@@ -122,7 +123,7 @@ static int privacy_exec (struct ast_channel *chan, void *data)
|
||||
if (!x)
|
||||
{
|
||||
/*Read in the config file*/
|
||||
cfg = ast_config_load(PRIV_CONFIG);
|
||||
cfg = ast_config_load(PRIV_CONFIG, config_flags);
|
||||
|
||||
if (cfg && (s = ast_variable_retrieve(cfg, "general", "maxretries"))) {
|
||||
if (sscanf(s, "%d", &x) == 1)
|
||||
|
Reference in New Issue
Block a user