]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
fix sql stmt for blf subs
authorAnthony Minessale <anthony.minessale@gmail.com>
Sat, 7 Nov 2009 17:59:01 +0000 (17:59 +0000)
committerAnthony Minessale <anthony.minessale@gmail.com>
Sat, 7 Nov 2009 17:59:01 +0000 (17:59 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@15396 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/endpoints/mod_sofia/sofia_presence.c

index d6c55670b5045b514f48b228bf06e157719f4d7c..7502ad2768ff74bd3eec44009998954cf7667db5 100644 (file)
@@ -1628,7 +1628,15 @@ void sofia_presence_handle_sip_i_subscribe(int status,
                switch_snprintf(exp_delta_str, sizeof(exp_delta_str), "%ld", exp_delta);
                
                if (sofia_test_pflag(profile, PFLAG_MULTIREG)) {
-                       sql = switch_mprintf("delete from sip_subscriptions where call_id='%q' or (contact='%q' and event='%q')", call_id, contact_str, event);
+                       //sql = switch_mprintf("delete from sip_subscriptions where call_id='%q' or (contact='%q' and event='%q')", call_id, contact_str, event);
+
+                       sql = switch_mprintf("delete from sip_subscriptions where call_id='%q' "
+                                                                "or (proto='%q' and sip_user='%q' and sip_host='%q' "
+                                                                "and sub_to_user='%q' and sub_to_host='%q' and event='%q' and hostname='%q' "
+                                                                "and contact='%q')",
+                                                                call_id, proto, from_user, from_host, to_user, to_host, event, mod_sofia_globals.hostname,
+                                                                contact_str);
+
                } else {
                        sql = switch_mprintf("delete from sip_subscriptions where "
                                                                 "proto='%q' and sip_user='%q' and sip_host='%q' and sub_to_user='%q' and sub_to_host='%q' and event='%q' and hostname='%q'",