Module: sip-router
Branch: master
Commit: fed0a07d86c9e4d365cb7a5e25d4aaacb4b9adf2
URL:
http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=fed0a07…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: Thu Oct 3 10:00:22 2013 +0200
dialog: fixed typos in log messages
---
modules/dialog/dlg_req_within.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/dialog/dlg_req_within.c b/modules/dialog/dlg_req_within.c
index 90ec526..29ee23f 100644
--- a/modules/dialog/dlg_req_within.c
+++ b/modules/dialog/dlg_req_within.c
@@ -397,7 +397,7 @@ int dlg_send_ka(dlg_cell_t *dlg, int dir, str *hdrs)
else
di->loc_seq.value -= 1;
- LM_DBG("sending BYE to %s\n",
(dir==DLG_CALLER_LEG)?"caller":"callee");
+ LM_DBG("sending OPTIONS to %s\n",
(dir==DLG_CALLER_LEG)?"caller":"callee");
iuid = dlg_get_iuid_shm_clone(dlg);
if(iuid==NULL)
@@ -411,7 +411,7 @@ int dlg_send_ka(dlg_cell_t *dlg, int dir, str *hdrs)
result = d_tmb.t_request_within(&uac_r);
if(result < 0){
- LM_ERR("failed to send the BYE request\n");
+ LM_ERR("failed to send the OPTIONS request\n");
goto err;
}