Update sofia build to 1.12.2 on windows.

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2858 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris
2006-09-28 20:03:23 +00:00
parent f567ba48b6
commit ea3eab9cfd
6 changed files with 441 additions and 440 deletions
+1 -1
View File
@@ -2196,7 +2196,7 @@ static void event_handler(switch_event_t *event)
char *contact_user = switch_event_get_header(event, "orig-contact-user");
char *contact_host = switch_event_get_header(event, "orig-contact-host");
char *exp_str = switch_event_get_header(event, "orig-expires");
long expires = time(NULL) + atol(exp_str);
long expires = (long)time(NULL) + atol(exp_str);
char *profile_name = switch_event_get_header(event, "orig-profile-name");
sofia_profile_t *profile;
char buf[512];