From: Sean Bright Date: Fri, 2 Mar 2012 15:59:50 +0000 (+0000) Subject: The default value for mohinterpret is the empty string, so when resetting to X-Git-Tag: 10.3.0~71 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ca5fe398a28ed820088261276e91ca6a78fb18f6;p=thirdparty%2Fasterisk.git The default value for mohinterpret is the empty string, so when resetting to default values don't explicitly set the value to "default." ........ Merged revisions 357811 from http://svn.asterisk.org/svn/asterisk/branches/1.8 git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/10@357812 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_iax2.c b/channels/chan_iax2.c index 87c307e4f6..c5234f0500 100644 --- a/channels/chan_iax2.c +++ b/channels/chan_iax2.c @@ -13119,7 +13119,7 @@ static void set_config_destroy(void) { strcpy(accountcode, ""); strcpy(language, ""); - strcpy(mohinterpret, "default"); + strcpy(mohinterpret, ""); strcpy(mohsuggest, ""); trunkmaxsize = MAX_TRUNKDATA; amaflags = 0;