[asterisk-commits] file: branch 1.4 r49073 -
/branches/1.4/pbx/pbx_config.c
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Sat Dec 30 11:31:18 MST 2006
Author: file
Date: Sat Dec 30 12:31:17 2006
New Revision: 49073
URL: http://svn.digium.com/view/asterisk?view=rev&rev=49073
Log:
IAX has been deprecated for quite some time so we had better use IAX2 when creating the dial string for users. (issue #8697 reported by ssokol)
Modified:
branches/1.4/pbx/pbx_config.c
Modified: branches/1.4/pbx/pbx_config.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/pbx/pbx_config.c?view=diff&rev=49073&r1=49072&r2=49073
==============================================================================
--- branches/1.4/pbx/pbx_config.c (original)
+++ branches/1.4/pbx/pbx_config.c Sat Dec 30 12:31:17 2006
@@ -2368,7 +2368,7 @@
append_interface(iface, sizeof(iface), tmp);
}
if (ast_true(ast_config_option(cfg, cat, "hasiax"))) {
- snprintf(tmp, sizeof(tmp), "IAX/%s", cat);
+ snprintf(tmp, sizeof(tmp), "IAX2/%s", cat);
append_interface(iface, sizeof(iface), tmp);
}
if (ast_true(ast_config_option(cfg, cat, "hash323"))) {
More information about the asterisk-commits
mailing list