Module: sip-router Branch: master Commit: 873d03503afa2059f4b1d6ca3903b1a2a6428d1f URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=873d0350...
Author: Juha Heinanen jh@tutpro.com Committer: Juha Heinanen jh@tutpro.com Date: Sat Sep 26 11:50:10 2009 +0300
* Fixed to_any_gw() example.
---
modules/lcr/README | 2 +- modules/lcr/doc/lcr_admin.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/lcr/README b/modules/lcr/README index 2454a28..f0bcf07 100644 --- a/modules/lcr/README +++ b/modules/lcr/README @@ -792,7 +792,7 @@ if (to_gw("1")) {
Example 1.36. to_gw usage ... -if (to_gw("1")) { +if (to_any_gw()) { ... exit; }; diff --git a/modules/lcr/doc/lcr_admin.xml b/modules/lcr/doc/lcr_admin.xml index 3a74061..fc76be3 100644 --- a/modules/lcr/doc/lcr_admin.xml +++ b/modules/lcr/doc/lcr_admin.xml @@ -987,7 +987,7 @@ if (to_gw("1")) { <title><function>to_gw</function> usage</title> <programlisting format = "linespecific"> ... -if (to_gw("1")) { +if (to_any_gw()) { ... exit; };