[asterisk-commits] mnicholson: branch 1.8 r348212 - /branches/1.8/res/res_fax.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Dec 14 16:01:50 CST 2011
Author: mnicholson
Date: Wed Dec 14 16:01:48 2011
New Revision: 348212
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=348212
Log:
Don't clear LOCALSTATIONID before sending or receiving. The user may set that
variable.
ASTERISK-18921
Modified:
branches/1.8/res/res_fax.c
Modified: branches/1.8/res/res_fax.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/res/res_fax.c?view=diff&rev=348212&r1=348211&r2=348212
==============================================================================
--- branches/1.8/res/res_fax.c (original)
+++ branches/1.8/res/res_fax.c Wed Dec 14 16:01:48 2011
@@ -1552,7 +1552,6 @@
/* 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);
@@ -2024,7 +2023,6 @@
/* 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);
More information about the asterisk-commits
mailing list