aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-12-24 06:47:29 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-12-24 06:47:29 +0000
commited1fa17d7f026efb7f991b42abc9048d98d1e9bc (patch)
tree08751e5f0d74689009badf7936db1c7f82a58738 /channels
parentf3fb93d1f44163c3a50d199327065c8b0cb79ef8 (diff)
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/branches/1.2@48939 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 96dd99cf5..0fb18f57a 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);