From: Anthony Minessale Date: Thu, 20 Apr 2006 02:13:00 +0000 (+0000) Subject: update ip binding stuff to match X-Git-Tag: v1.0-beta1~2816 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1d0944366317b25aab8cf62cac15acbfa9aa60da;p=thirdparty%2Ffreeswitch.git update ip binding stuff to match git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1211 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- 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);