Module: sip-router
Branch: 4.1
Commit: 91241caa2c2bc51b421d024c790493fdaf24c8ee
URL:
http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=91241ca…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: Wed Feb 26 18:03:20 2014 +0100
sl: fixed use of forward_reply_nocb() in sl_forward_reply()
- previous related commit was not doing it
(cherry picked from commit 4133a44cc9b1702b3a36b9386464983d2fe9aedc)
---
modules/sl/sl.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/sl/sl.c b/modules/sl/sl.c
index fb8a1ee..9501049 100644
--- a/modules/sl/sl.c
+++ b/modules/sl/sl.c
@@ -432,7 +432,7 @@ static int w_sl_forward_reply(sip_msg_t* msg, str* code, str* reason)
goto restore;
}
}
- ret = forward_reply(msg);
+ ret = forward_reply_nocb(msg);
restore:
if(reason!=NULL) {
if(ldel!=NULL) {