From: Anthony Minessale Date: Wed, 4 Mar 2015 21:01:31 +0000 (-0600) Subject: FS-7500: missing newline X-Git-Tag: v1.6.2~614^2~304 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6e05e09e9a882c8054c4c039ae3fc1eb0bfcedb0;p=thirdparty%2Ffreeswitch.git FS-7500: missing newline --- diff --git a/src/switch_rtp.c b/src/switch_rtp.c index a4b6b144b9..83a269026c 100644 --- a/src/switch_rtp.c +++ b/src/switch_rtp.c @@ -5089,7 +5089,7 @@ static switch_status_t read_rtp_packet(switch_rtp_t *rtp_session, switch_size_t stat = srtp_unprotect(rtp_session->recv_ctx[rtp_session->srtp_idx_rtp], &rtp_session->recv_msg.header, &sbytes); if (rtp_session->flags[SWITCH_RTP_FLAG_NACK] && stat == err_status_replay_fail) { /* false alarm nack */ - switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(rtp_session->session), SWITCH_LOG_DEBUG, "REPLAY ERR, FALSE NACK"); + switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(rtp_session->session), SWITCH_LOG_DEBUG, "REPLAY ERR, FALSE NACK\n"); stat = 0; sbytes = 0; *bytes = 0;