Module: sip-router
Branch: master
Commit: e4ffcaf671c93222a5aed846cf89fefaf72b2b4a
URL:    
http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=e4ffcaf671c93222a5aed846cf89fefaf72b2b4a

Author: Olle E. Johansson <[email protected]>
Committer: Olle E. Johansson <[email protected]>
Date:   Thu Feb  7 22:05:05 2013 +0100

outbound - Fix typos in example configuration

---

 modules/outbound/README                 |    6 +++---
 modules/outbound/doc/outbound_admin.xml |    6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/modules/outbound/README b/modules/outbound/README
index 0a71243..3e6aa97 100644
--- a/modules/outbound/README
+++ b/modules/outbound/README
@@ -245,7 +245,7 @@ route[LOCATION] {
                 exit;
         }
 
-        t_on_failure(FAIL_OUTBOUND);
+        t_on_failure("FAIL_OUTBOUND");
 ...
 }
 ...
@@ -260,8 +260,8 @@ failure_route[FAIL_OUTBOUND] {
                 exit;
         }
 
-        t_on_failure(FAIL_OUTBOUND);
-        route[RELAY];
+        t_on_failure("FAIL_OUTBOUND");
+        route(RELAY);
 }
 ...
 
diff --git a/modules/outbound/doc/outbound_admin.xml 
b/modules/outbound/doc/outbound_admin.xml
index 0dcd29a..837e0da 100644
--- a/modules/outbound/doc/outbound_admin.xml
+++ b/modules/outbound/doc/outbound_admin.xml
@@ -203,7 +203,7 @@ route[LOCATION] {
                exit;
        }
 
-       t_on_failure(FAIL_OUTBOUND);
+       t_on_failure("FAIL_OUTBOUND");
 ...
 }
 ...
@@ -218,8 +218,8 @@ failure_route[FAIL_OUTBOUND] {
                exit;
        }
 
-       t_on_failure(FAIL_OUTBOUND);
-       route[RELAY];
+       t_on_failure("FAIL_OUTBOUND");
+       route(RELAY);
 }
 ...
 ]]></programlisting>


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

Reply via email to