Module: sip-router
Branch: master
Commit: e02225e4405bc422daa4971fcc0ff87fab713e01
URL:
http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=e02225e…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: Fri Sep 10 21:38:31 2010 +0200
xmlrpc: fixed non-sip filter out
- issue introduced in previous commit
---
modules/xmlrpc/xmlrpc.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/xmlrpc/xmlrpc.c b/modules/xmlrpc/xmlrpc.c
index 90dd397..17cd6de 100644
--- a/modules/xmlrpc/xmlrpc.c
+++ b/modules/xmlrpc/xmlrpc.c
@@ -2172,7 +2172,7 @@ static int process_xmlrpc(sip_msg_t* msg)
char c;
ret=NONSIP_MSG_DROP;
- if (IS_HTTP(msg))
+ if (!IS_HTTP(msg))
return NONSIP_MSG_PASS;
if(xmlrpc_url_skip!=NULL || xmlrpc_url_match!=NULL)