aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-02-13 21:31:22 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-02-13 21:31:22 +0000
commit03434bc6eb92f73544fb098e4c1087c3fa006f36 (patch)
treef47cb53a640f70c4030a92925b2ebbb796f970fc /channels
parentc0a9497bec86ca244011f1c08ad65bea23a0ba13 (diff)
Remove a couple of leftover debug messages
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@54235 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_sip.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index c565e087b..ec01afe6d 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -5196,12 +5196,10 @@ static int process_sdp(struct sip_pvt *p, struct sip_request *req)
}
if (sin.sin_addr.s_addr && !sendonly) {
- ast_log(LOG_DEBUG, "Queueing UNHOLD!\n");
ast_queue_control(p->owner, AST_CONTROL_UNHOLD);
/* Activate a re-invite */
ast_queue_frame(p->owner, &ast_null_frame);
} else if (!sin.sin_addr.s_addr || sendonly) {
- ast_log(LOG_DEBUG, "Going on HOLD!\n");
ast_queue_control_data(p->owner, AST_CONTROL_HOLD,
S_OR(p->mohsuggest, NULL),
!ast_strlen_zero(p->mohsuggest) ? strlen(p->mohsuggest) + 1 : 0);