[asterisk-commits] irroot: branch irroot/t38gateway-1.8 r338906 - /team/irroot/t38gateway-1.8/res/
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Sun Oct 2 09:22:36 CDT 2011
Author: irroot
Date: Sun Oct 2 09:22:33 2011
New Revision: 338906
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=338906
Log:
Remove T38 Gateway capability when detaching framehook.
SET(FAXOPT(gateway)=no) does not remove the capability when
detaching the framehook.
small patch to fix this problem.
Modified:
team/irroot/t38gateway-1.8/res/res_fax.c
Modified: team/irroot/t38gateway-1.8/res/res_fax.c
URL: http://svnview.digium.com/svn/asterisk/team/irroot/t38gateway-1.8/res/res_fax.c?view=diff&rev=338906&r1=338905&r2=338906
==============================================================================
--- team/irroot/t38gateway-1.8/res/res_fax.c (original)
+++ team/irroot/t38gateway-1.8/res/res_fax.c Sun Oct 2 09:22:33 2011
@@ -2953,6 +2953,8 @@
}
}
+ details->caps &= ~AST_FAX_TECH_GATEWAY;
+
ao2_ref(details, -1);
return NULL;
}
More information about the asterisk-commits
mailing list