tweak on last commit

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16802 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale 2010-02-24 18:41:23 +00:00
parent 645edfe320
commit 5638b3a4f0
1 changed files with 0 additions and 2 deletions

View File

@ -1003,12 +1003,10 @@ SWITCH_DECLARE(switch_status_t) switch_find_local_ip(char *buf, int len, int *ma
if (force_local_ip_v4) { if (force_local_ip_v4) {
switch_copy_string(buf, force_local_ip_v4, len); switch_copy_string(buf, force_local_ip_v4, len);
} }
return SWITCH_STATUS_SUCCESS;
case AF_INET6: case AF_INET6:
if (force_local_ip_v6) { if (force_local_ip_v6) {
switch_copy_string(buf, force_local_ip_v6, len); switch_copy_string(buf, force_local_ip_v6, len);
} }
return SWITCH_STATUS_SUCCESS;
default: default:
break; break;
} }