From: Matthew Nicholson Date: Wed, 14 Dec 2011 22:05:21 +0000 (+0000) Subject: Don't clear LOCALSTATIONID before sending or receiving. The user may set that X-Git-Tag: 10.1.0-rc1~29 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d4345a06839f53e22f91a6e3b8b2925840046fd7;p=thirdparty%2Fasterisk.git Don't clear LOCALSTATIONID before sending or receiving. The user may set that variable. ASTERISK-18921 ........ Merged revisions 348212 from http://svn.asterisk.org/svn/asterisk/branches/1.8 git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/10@348213 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/res/res_fax.c b/res/res_fax.c index 6b9d7dff3d..c63bd6134b 100644 --- a/res/res_fax.c +++ b/res/res_fax.c @@ -1685,7 +1685,6 @@ static int receivefax_exec(struct ast_channel *chan, const char *data) /* initialize output channel variables */ pbx_builtin_setvar_helper(chan, "FAXSTATUS", "FAILED"); pbx_builtin_setvar_helper(chan, "REMOTESTATIONID", NULL); - pbx_builtin_setvar_helper(chan, "LOCALSTATIONID", NULL); pbx_builtin_setvar_helper(chan, "FAXPAGES", "0"); pbx_builtin_setvar_helper(chan, "FAXBITRATE", NULL); pbx_builtin_setvar_helper(chan, "FAXRESOLUTION", NULL); @@ -2155,7 +2154,6 @@ static int sendfax_exec(struct ast_channel *chan, const char *data) /* initialize output channel variables */ pbx_builtin_setvar_helper(chan, "FAXSTATUS", "FAILED"); pbx_builtin_setvar_helper(chan, "REMOTESTATIONID", NULL); - pbx_builtin_setvar_helper(chan, "LOCALSTATIONID", NULL); pbx_builtin_setvar_helper(chan, "FAXPAGES", "0"); pbx_builtin_setvar_helper(chan, "FAXBITRATE", NULL); pbx_builtin_setvar_helper(chan, "FAXRESOLUTION", NULL);