aboutsummaryrefslogtreecommitdiffstats
path: root/pbx/pbx_config.c
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2006-12-30 18:32:31 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2006-12-30 18:32:31 +0000
commit1258c29dbe7d774ab4cc6057868ec45706e3dee3 (patch)
tree27231c53d1356c157dbcba49aa344d59f637e41b /pbx/pbx_config.c
parentb3fd402abbc18be40b9db1aa7ce06a5051cce16e (diff)
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: http://svn.digium.com/svn/asterisk/trunk@49074 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'pbx/pbx_config.c')
-rw-r--r--pbx/pbx_config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pbx/pbx_config.c b/pbx/pbx_config.c
index 3d7502196..d999f3cd4 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"))) {