From 858796affad6ef0795ed3a9d5d6616b9c421f000 Mon Sep 17 00:00:00 2001 From: Joshua Colp Date: Sat, 30 Dec 2006 18:32:31 +0000 Subject: [PATCH] Merged revisions 49073 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r49073 | file | 2006-12-30 13:31:17 -0500 (Sat, 30 Dec 2006) | 2 lines 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) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@49074 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- pbx/pbx_config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pbx/pbx_config.c b/pbx/pbx_config.c index 3d7502196e..d999f3cd49 100644 --- a/pbx/pbx_config.c +++ b/pbx/pbx_config.c @@ -1535,7 +1535,7 @@ static void pbx_load_users(void) 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"))) { -- 2.47.2