From: Sean Bright Date: Fri, 2 Mar 2012 15:58:20 +0000 (+0000) Subject: The default value for mohinterpret is the empty string, so when resetting to X-Git-Tag: 1.8.10.1~47 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b3fb9153dd1e31538d6ff1ef0920c3a9ee5d5a47;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." git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@357811 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_iax2.c b/channels/chan_iax2.c index 7719bfdb14..bce44fa5ab 100644 --- a/channels/chan_iax2.c +++ b/channels/chan_iax2.c @@ -12997,7 +12997,7 @@ static void set_config_destroy(void) { strcpy(accountcode, ""); strcpy(language, ""); - strcpy(mohinterpret, "default"); + strcpy(mohinterpret, ""); strcpy(mohsuggest, ""); trunkmaxsize = MAX_TRUNKDATA; amaflags = 0;