Module: sip-router
Branch: 4.1
Commit: 5556a88594d46030d978987eb387427f63875d73
URL:
http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=5556a88…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: Tue Jan 28 18:30:30 2014 +0100
db_cluster: fix caseness in testing the connection flags for reading
- on a report generated by cppcheck sent by David Binderman
(cherry picked from commit 88a1a1b25b5228ef2e34ee01e0dd5d4e4f6ffe20)
---
modules/db_cluster/dbcl_data.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/db_cluster/dbcl_data.c b/modules/db_cluster/dbcl_data.c
index 5ef3b63..ca821bc 100644
--- a/modules/db_cluster/dbcl_data.c
+++ b/modules/db_cluster/dbcl_data.c
@@ -249,7 +249,7 @@ int dbcl_cls_set_connections(dbcl_cls_t *cls, str *cons)
goto error;
}
i = s.s[0] - '0';
- if(s.s[1]!='s' && s.s[1]!='S' && s.s[1]!='r'
&& s.s[1]!='r')
+ if(s.s[1]!='s' && s.s[1]!='S' && s.s[1]!='r'
&& s.s[1]!='R')
{
LM_ERR("invalid parameter [%.*s] for connection id [%.*s]\n",
pit->body.len, pit->body.s,
@@ -277,7 +277,7 @@ int dbcl_cls_set_connections(dbcl_cls_t *cls, str *cons)
goto error;
}
i = s.s[2] - '0';
- if(s.s[3]!='s' && s.s[3]!='S' && s.s[3]!='r'
&& s.s[3]!='r'
+ if(s.s[3]!='s' && s.s[3]!='S' && s.s[3]!='r'
&& s.s[3]!='R'
&& s.s[3]!='p' && s.s[3]!='P')
{
LM_ERR("invalid parameter [%.*s] for connection id [%.*s]\n",