Module: sip-router
Branch: master
Commit: 72ac3f486280d1ad15edfb3d39d8f1859aadb374
URL:
http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=72ac3f4…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: Sun Sep 12 11:47:37 2010 +0200
xmlrpc: fixed c&p module name error
- reported by Juha Heinannen
---
modules/xmlrpc/README | 4 ++--
modules/xmlrpc/doc/params.xml | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/modules/xmlrpc/README b/modules/xmlrpc/README
index 7d6cba4..dcf2ae8 100644
--- a/modules/xmlrpc/README
+++ b/modules/xmlrpc/README
@@ -589,7 +589,7 @@ modparam("xmlrpc", "mode", 1)
Example 7. Set url_skip parameter
...
-modparam("xhttp", "url_skip", "^/sip")
+modparam("xmlrpc", "url_skip", "^/sip")
...
1.5.7. url_match (str)
@@ -603,7 +603,7 @@ modparam("xhttp", "url_skip", "^/sip")
Example 8. Set url_match parameter
...
-modparam("xhttp", "url_match", "^/RPC2")
+modparam("xmlrpc", "url_match", "^/RPC2")
...
1.6. Functions
diff --git a/modules/xmlrpc/doc/params.xml b/modules/xmlrpc/doc/params.xml
index 5cd120a..d9bee27 100644
--- a/modules/xmlrpc/doc/params.xml
+++ b/modules/xmlrpc/doc/params.xml
@@ -149,7 +149,7 @@ modparam("xmlrpc", "mode", 1)
<title>Set <varname>url_skip</varname> parameter</title>
<programlisting format="linespecific">
...
-modparam("xhttp", "url_skip", "^/sip")
+modparam("xmlrpc", "url_skip", "^/sip")
...
</programlisting>
</example>
@@ -171,7 +171,7 @@ modparam("xhttp", "url_skip", "^/sip")
<title>Set <varname>url_match</varname> parameter</title>
<programlisting format="linespecific">
...
-modparam("xhttp", "url_match", "^/RPC2")
+modparam("xmlrpc", "url_match", "^/RPC2")
...
</programlisting>
</example>