From: Anthony Minessale Date: Mon, 31 Mar 2014 21:22:29 +0000 (-0500) Subject: FS-6412 --resolve X-Git-Tag: v1.5.12~279 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aa147fa5fd71b42e42a04121f706f648ebf417d6;p=thirdparty%2Ffreeswitch.git FS-6412 --resolve --- diff --git a/src/switch_rtp.c b/src/switch_rtp.c index aac2399471..a7fec0bfc1 100644 --- a/src/switch_rtp.c +++ b/src/switch_rtp.c @@ -836,7 +836,7 @@ static void handle_ice(switch_rtp_t *rtp_session, switch_rtp_ice_t *ice, void *d memcpy(buf, data, cpylen); packet = switch_stun_packet_parse(buf, (uint32_t)cpylen); if (!packet) { - switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(rtp_session->session), SWITCH_LOG_ERROR, "Invalid STUN/ICE packet received %ld %d\n", (long)cpylen, *(uint8_t *) data); + switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(rtp_session->session), SWITCH_LOG_ERROR, "Invalid STUN/ICE packet received %ld bytes\n", (long)cpylen); goto end; }