]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
FS-6688 #resolve
authorBrian West <brian@freeswitch.org>
Mon, 27 Oct 2014 19:14:15 +0000 (14:14 -0500)
committerBrian West <brian@freeswitch.org>
Mon, 27 Oct 2014 19:14:21 +0000 (14:14 -0500)
src/mod/endpoints/mod_sofia/sofia_presence.c

index d8cb06866d0b7ea08a733f7f49fbce479b82458d..4c0e3be89ec30864c6940f51245e4a155375eb2c 100644 (file)
@@ -3905,10 +3905,10 @@ void sofia_presence_handle_sip_i_subscribe(int status,
                
                sql = switch_mprintf("update sip_subscriptions "
                                                         "set expires=%ld, "
-                                                        "network_ip='%q',network_port='%d',sip_user='%q',sip_host='%q',full_via='%q',full_to='%q',full_from='%q',contact='%q' "
+                                                        "network_ip='%q',network_port='%d',sip_user='%q',sip_host='%q',full_via='%q',full_to='%q',full_from='%q' "
                                                         "where call_id='%q' and profile_name='%q' and hostname='%q'",
                                                         (long) switch_epoch_time_now(NULL) + exp_delta, 
-                                                        np.network_ip, np.network_port, from_user, from_host, full_via, full_to, full_from, contact_str,
+                                                        np.network_ip, np.network_port, from_user, from_host, full_via, full_to, full_from,
                                                         
                                                         call_id, profile->name, mod_sofia_globals.hostname);