Module: kamailio
Branch: master
Commit: 5adbfc6cc62be393ac55d296cab79f7e60b17ae4
URL: 
https://github.com/kamailio/kamailio/commit/5adbfc6cc62be393ac55d296cab79f7e60b17ae4

Author: lazedo <[email protected]>
Committer: lazedo <[email protected]>
Date: 2015-02-18T23:01:57Z

db_text : missing OP_NEQ

this affects the presence package when it queries for active_watchers

---

Modified: modules/db_text/dbt_res.c

---

Diff:  
https://github.com/kamailio/kamailio/commit/5adbfc6cc62be393ac55d296cab79f7e60b17ae4.diff
Patch: 
https://github.com/kamailio/kamailio/commit/5adbfc6cc62be393ac55d296cab79f7e60b17ae4.patch

---

diff --git a/modules/db_text/dbt_res.c b/modules/db_text/dbt_res.c
index f115992..bff71b0 100644
--- a/modules/db_text/dbt_res.c
+++ b/modules/db_text/dbt_res.c
@@ -208,6 +208,11 @@ int dbt_row_match(dbt_table_p _dtp, dbt_row_p _drp, int* 
_lkey,
                        if(res!=0)
                                return 0;
                }else{
+               if(!strcmp(_op[i], OP_NEQ))
+               {
+                       if(res==0)
+                               return 0;
+               }else{
                if(!strcmp(_op[i], OP_LT))
                {
                        if(res!=-1)
@@ -229,7 +234,7 @@ int dbt_row_match(dbt_table_p _dtp, dbt_row_p _drp, int* 
_lkey,
                                return 0;
                }else{
                        return 0;
-               }}}}}           
+               }}}}}}
        }
        return 1;
 }


_______________________________________________
sr-dev mailing list
[email protected]
http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-dev

Reply via email to