aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-12-24 06:51:37 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-12-24 06:51:37 +0000
commitb0dab693965e69da4894b8c026c1310c167fa4d7 (patch)
treeaf45ff9e5cc8b2f6bb5d4908047d04609c501f1b /channels
parent745634302208b94c9e9b74208d0a4bedb5c034b5 (diff)
Merged revisions 48940 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ................ r48940 | russell | 2006-12-24 01:49:31 -0500 (Sun, 24 Dec 2006) | 11 lines Merged revisions 48939 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r48939 | russell | 2006-12-24 01:47:29 -0500 (Sun, 24 Dec 2006) | 3 lines Remove a couple of misplaced dots in log messages. This was reported by Andrea Spadaccini on the asterisk-dev mailing list. ........ ................ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@48941 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_sip.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 69fc87920..e21e9670a 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -14241,11 +14241,11 @@ static int handle_request_bye(struct sip_pvt *p, struct sip_request *req)
} else if (p->owner) {
ast_queue_hangup(p->owner);
if (option_debug > 2)
- ast_log(LOG_DEBUG, "Received bye, issuing owner hangup\n.");
+ ast_log(LOG_DEBUG, "Received bye, issuing owner hangup\n");
} else {
sip_scheddestroy(p, DEFAULT_TRANS_TIMEOUT);
if (option_debug > 2)
- ast_log(LOG_DEBUG, "Received bye, no owner, selfdestruct soon.\n.");
+ ast_log(LOG_DEBUG, "Received bye, no owner, selfdestruct soon.\n");
}
transmit_response(p, "200 OK", req);