From: Brian West Date: Mon, 5 Dec 2016 12:38:44 +0000 (-0600) Subject: FS-9812 fix label that is only used when zrtp or srtp are enabled X-Git-Tag: v1.8.0~1009 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d28138ea4aa371185e719623f20ef6598f888c1f;p=thirdparty%2Ffreeswitch.git FS-9812 fix label that is only used when zrtp or srtp are enabled --- diff --git a/src/switch_rtp.c b/src/switch_rtp.c index d335e7e1c1..7257a3d5db 100644 --- a/src/switch_rtp.c +++ b/src/switch_rtp.c @@ -8420,8 +8420,9 @@ SWITCH_DECLARE(switch_status_t) switch_rtp_write_raw(switch_rtp_t *rtp_session, } status = switch_socket_sendto(rtp_session->sock_output, rtp_session->remote_addr, 0, data, bytes); - +#if defined(ENABLE_SRTP) || defined(ENABLE_ZRTP) end: +#endif WRITE_DEC(rtp_session);