summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Traud <pabstraud@compuserve.com>2018-03-12 10:11:15 +0100
committerAlexander Traud <pabstraud@compuserve.com>2018-03-12 10:11:15 +0100
commit9164be19d20d7871640867ee65dcbcd8cacb4149 (patch)
tree20df51e6279eaa28dbe0fdd4ee87124527badf98
parent4ef5b58230f2c1298aea29de54b714f12fcc6bd5 (diff)
res_srtp: Add support for libsrtp2.x on openSUSE.
Since ASTERISK-27253, no symbols from the header srtp2/crypto_types.h are used anymore. Therefore, its include statement can be removed. This allows to compile Asterisk on platforms which do not offer this private header, like openSUSE. ASTERISK-27733 Change-Id: I25c5cb8fa966043d1506ebef449e5a724412b4b6
-rw-r--r--res/res_srtp.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/res/res_srtp.c b/res/res_srtp.c
index 1077f2337..cda1291fa 100644
--- a/res/res_srtp.c
+++ b/res/res_srtp.c
@@ -41,7 +41,6 @@
#if HAVE_SRTP_VERSION > 1
# include <srtp2/srtp.h>
-# include <srtp2/crypto_types.h>
# include "srtp/srtp_compat.h"
# include <openssl/rand.h>
#else