From: Mathieu Rene Date: Wed, 12 Aug 2009 16:04:58 +0000 (+0000) Subject: mod_voicemail: fix operator-ext/operator-extension duplicate config declaration X-Git-Tag: v1.0.6~2069 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2f70836eadac0a66505843ee5098ab90a146564b;p=thirdparty%2Ffreeswitch.git mod_voicemail: fix operator-ext/operator-extension duplicate config declaration git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@14498 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/mod/applications/mod_voicemail/mod_voicemail.c b/src/mod/applications/mod_voicemail/mod_voicemail.c index e6cfc2481b..18f3a7bbcd 100644 --- a/src/mod/applications/mod_voicemail/mod_voicemail.c +++ b/src/mod/applications/mod_voicemail/mod_voicemail.c @@ -516,8 +516,6 @@ vm_profile_t *profile_set_config(vm_profile_t *profile) &profile->urgent_key, "*", &config_dtmf, NULL, NULL); SWITCH_CONFIG_SET_ITEM(profile->config[i++], "operator-key", SWITCH_CONFIG_STRING, CONFIG_RELOADABLE, &profile->operator_key, "", &config_dtmf, NULL, NULL); - SWITCH_CONFIG_SET_ITEM(profile->config[i++], "operator-extension", SWITCH_CONFIG_STRING, CONFIG_RELOADABLE, - &profile->operator_ext, "", NULL, NULL, NULL); SWITCH_CONFIG_SET_ITEM(profile->config[i++], "vmain-key", SWITCH_CONFIG_STRING, CONFIG_RELOADABLE, &profile->vmain_key, "", &config_dtmf, NULL, NULL); SWITCH_CONFIG_SET_ITEM(profile->config[i++], "vmain-extension", SWITCH_CONFIG_STRING, CONFIG_RELOADABLE,