Module: sip-router
Branch: master
Commit: 5d3e8b9ff526246a8abe768a1d970dce70658dbe
URL:
http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=5d3e8b9…
Author: Andrew Mortensen <admorten(a)isc.upenn.edu>
Committer: Andrew Mortensen <admorten(a)isc.upenn.edu>
Date: Wed Dec 5 16:59:50 2012 -0500
sca: update sample kamailio.cfg in README with small CANCEL fix.
- Reported by Robert Boisvert
---
modules/sca/README | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/modules/sca/README b/modules/sca/README
index 9181418..a97936e 100644
--- a/modules/sca/README
+++ b/modules/sca/README
@@ -578,9 +578,10 @@ request_route {
# CANCEL processing
if (is_method("CANCEL"))
{
- if (t_check_trans())
+ if (t_check_trans()) {
route(SCA);
t_relay();
+ }
exit;
}