From 174a1e2458600fe47154706b5d633d0e5e83ded8 Mon Sep 17 00:00:00 2001 From: Brian West Date: Mon, 5 Dec 2016 06:38:44 -0600 Subject: [PATCH] FS-9812 fix label that is only used when zrtp or srtp are enabled --- src/switch_rtp.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/switch_rtp.c b/src/switch_rtp.c index d3f2ccb8e3..3c0eaa7d0e 100644 --- a/src/switch_rtp.c +++ b/src/switch_rtp.c @@ -8375,8 +8375,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);