move the copy of the default settings to the global settings back out of

process_zap, so that they aren't overwritten when process_zap is called
multiple times


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@46370 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.4
Russell Bryant 19 years ago
parent 5a2abaee46
commit 0ed3384fb1

@ -10419,9 +10419,6 @@ static int process_zap(struct ast_variable *v, int reload, int skipchannels)
int y;
int found_pseudo = 0;
/* Copy the default jb config over global_jbconf */
memcpy(&global_jbconf, &default_jbconf, sizeof(struct ast_jb_conf));
while(v) {
if (!ast_jb_read_conf(&global_jbconf, v->name, v->value))
continue;
@ -11151,6 +11148,10 @@ static int setup_zap(int reload)
}
}
#endif
/* Copy the default jb config over global_jbconf */
memcpy(&global_jbconf, &default_jbconf, sizeof(struct ast_jb_conf));
v = ast_variable_browse(cfg, "channels");
res = process_zap(v, reload, 0);
ast_mutex_unlock(&iflock);

Loading…
Cancel
Save