Module: sip-router
Branch: pd/outbound
Commit: 5e844cf90c0d288a4038f5b2ff7cbebeab856488
URL:    
http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=5e844cf90c0d288a4038f5b2ff7cbebeab856488

Author: Peter Dunkley <[email protected]>
Committer: Peter Dunkley <[email protected]>
Date:   Sun Dec 30 18:31:07 2012 +0000

modules_k/outbound: changed some errors to info

---

 modules_k/outbound/ob_mod.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules_k/outbound/ob_mod.c b/modules_k/outbound/ob_mod.c
index 59c02f3..5b7b226 100644
--- a/modules_k/outbound/ob_mod.c
+++ b/modules_k/outbound/ob_mod.c
@@ -171,7 +171,7 @@ int decode_flow_token(struct receive_info *rcv, str 
flow_token)
 
        if (flow_token.len > base64_enc_len(UNENC_FLOW_TOKEN_MAX_LENGTH))
        {
-               LM_ERR("bad flow token length.  Length is %d, expected <= %d\n",
+               LM_INFO("bad flow token length.  Length is %d, expected <= 
%d\n",
                        flow_token.len, UNENC_FLOW_TOKEN_MAX_LENGTH);
                return -1;
        }
@@ -189,7 +189,7 @@ int decode_flow_token(struct receive_info *rcv, str 
flow_token)
        if (memcmp(unenc_flow_token, &hmac_sha1[SHA1_LENGTH - SHA1_80_LENGTH],
                SHA1_80_LENGTH) != 0)
        {
-               LM_ERR("flow token failed validation\n");
+               LM_INFO("flow token failed validation\n");
                return -1;
        }
 


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

Reply via email to