]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
app_confbridge: Fix confbridge.conf dsp_talking_threshold option setting wrong parameter.
authorRichard Mudgett <rmudgett@digium.com>
Tue, 8 Apr 2014 17:58:49 +0000 (17:58 +0000)
committerRichard Mudgett <rmudgett@digium.com>
Tue, 8 Apr 2014 17:58:49 +0000 (17:58 +0000)
Fixed copy pasta error.

ASTERISK-23545 #close
Reported by: John Knott

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/11@411944 65c4cc65-6c06-0410-ace0-fbb531ad65f3

apps/confbridge/conf_config_parser.c

index 93cde54a3c9ec74c3971d2892a0a9b0433d9afa4..e6626167fc855c3c6ca8114d8826d99204c49d8c 100644 (file)
@@ -1366,7 +1366,7 @@ int conf_load_config(void)
        aco_option_register(&cfg_info, "denoise", ACO_EXACT, user_types, "no", OPT_BOOLFLAG_T, 1, FLDSET(struct user_profile, flags), USER_OPT_DENOISE);
        aco_option_register(&cfg_info, "dsp_drop_silence", ACO_EXACT, user_types, "no", OPT_BOOLFLAG_T, 1, FLDSET(struct user_profile, flags), USER_OPT_DROP_SILENCE);
        aco_option_register(&cfg_info, "dsp_silence_threshold", ACO_EXACT, user_types, __stringify(DEFAULT_SILENCE_THRESHOLD), OPT_UINT_T, 0, FLDSET(struct user_profile, silence_threshold));
-       aco_option_register(&cfg_info, "dsp_talking_threshold", ACO_EXACT, user_types, __stringify(DEFAULT_TALKING_THRESHOLD), OPT_UINT_T, 0, FLDSET(struct user_profile, silence_threshold));
+       aco_option_register(&cfg_info, "dsp_talking_threshold", ACO_EXACT, user_types, __stringify(DEFAULT_TALKING_THRESHOLD), OPT_UINT_T, 0, FLDSET(struct user_profile, talking_threshold));
        aco_option_register(&cfg_info, "jitterbuffer", ACO_EXACT, user_types, "no", OPT_BOOLFLAG_T, 1, FLDSET(struct user_profile, flags), USER_OPT_JITTERBUFFER);
        /* This option should only be used with the CONFBRIDGE dialplan function */
        aco_option_register_custom(&cfg_info, "template", ACO_EXACT, user_types, NULL, user_template_handler, 0);