From: Russell Bryant Date: Sun, 24 Dec 2006 06:47:29 +0000 (+0000) Subject: Remove a couple of misplaced dots in log messages. This was reported by X-Git-Tag: 1.2.15~78 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=798116918eef88f6fc034c68c89253990881adbf;p=thirdparty%2Fasterisk.git Remove a couple of misplaced dots in log messages. This was reported by Andrea Spadaccini on the asterisk-dev mailing list. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@48939 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_sip.c b/channels/chan_sip.c index 96dd99cf59..0fb18f57a7 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -10921,11 +10921,11 @@ static int handle_request_bye(struct sip_pvt *p, struct sip_request *req, int de } 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 { ast_set_flag(p, SIP_NEEDDESTROY); 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);