From 6ba88701f5e1f035db662762711f021a5841712a Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Fri, 7 Apr 2006 00:38:05 +0000 Subject: [PATCH] 10 millionth time's a charm git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1076 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/endpoints/mod_exosip/mod_exosip.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mod/endpoints/mod_exosip/mod_exosip.c b/src/mod/endpoints/mod_exosip/mod_exosip.c index e7c7ba8408..ef25e21fd7 100644 --- a/src/mod/endpoints/mod_exosip/mod_exosip.c +++ b/src/mod/endpoints/mod_exosip/mod_exosip.c @@ -262,7 +262,7 @@ static switch_status exosip_on_init(switch_core_session *session) return SWITCH_STATUS_FALSE; } switch_console_printf(SWITCH_CHANNEL_CONSOLE, "Stun Success [%s]:[%d]\n", ip, sdp_port); - } else if (!strcasecmp(globals.host, "guess")){ + } else if (strcasecmp(globals.host, "guess")){ ip = globals.host; } @@ -1092,7 +1092,7 @@ static switch_status exosip_create_call(eXosip_event_t * event) } switch_console_printf(SWITCH_CHANNEL_CONSOLE, "Stun Success [%s]:[%d]\n", ip, sdp_port); switch_copy_string(tech_pvt->local_sdp_audio_ip, ip, sizeof(tech_pvt->local_sdp_audio_ip)); - } else if (!strcasecmp(globals.host, "guess")){ + } else if (strcasecmp(globals.host, "guess")){ ip = globals.host; switch_copy_string(tech_pvt->local_sdp_audio_ip, ip, sizeof(tech_pvt->local_sdp_audio_ip)); }