From d4345a06839f53e22f91a6e3b8b2925840046fd7 Mon Sep 17 00:00:00 2001 From: Matthew Nicholson Date: Wed, 14 Dec 2011 22:05:21 +0000 Subject: [PATCH] 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 --- res/res_fax.c | 2 -- 1 file changed, 2 deletions(-) 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); -- 2.47.2