From 1d0944366317b25aab8cf62cac15acbfa9aa60da Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Thu, 20 Apr 2006 02:13:00 +0000 Subject: [PATCH] update ip binding stuff to match git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1211 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/endpoints/mod_dingaling/mod_dingaling.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mod/endpoints/mod_dingaling/mod_dingaling.c b/src/mod/endpoints/mod_dingaling/mod_dingaling.c index 5227d1469e..a162013ab2 100644 --- a/src/mod/endpoints/mod_dingaling/mod_dingaling.c +++ b/src/mod/endpoints/mod_dingaling/mod_dingaling.c @@ -1196,9 +1196,9 @@ static switch_status load_config(void) profile->name = switch_core_strdup(module_pool, val); } else if (!strcmp(var, "message")) { profile->message = switch_core_strdup(module_pool, val); - } else if (!strcmp(var, "ip")) { + } else if (!strcmp(var, "rtp-ip")) { profile->ip = switch_core_strdup(module_pool, val); - } else if (!strcmp(var, "extip")) { + } else if (!strcmp(var, "ext-rtp-ip")) { profile->extip = switch_core_strdup(module_pool, val); } else if (!strcmp(var, "lanaddr")) { profile->lanaddr = switch_core_strdup(module_pool, val);