picky compilers

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13654 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale 2009-06-05 21:03:01 +00:00
parent 1cceadfe97
commit 151275db20
1 changed files with 2 additions and 1 deletions

View File

@ -104,10 +104,11 @@ static void check_ip(void) {
switch_set_string(main_ip4, guess_ip4);
} else {
if (!(ok4 = !strcmp(main_ip4, guess_ip4))) {
switch_set_string(old_ip4, main_ip4);
switch_set_string(main_ip4, guess_ip4);
switch_core_set_variable("local_ip_v4", guess_ip4);
switch_core_set_variable("local_mask_v4", inet_ntoa(*(struct in_addr *)(intptr_t)&mask));
switch_core_set_variable("local_mask_v4", inet_ntoa(mask));
}
}