Commit 29216d7f authored by James Almer's avatar James Almer Committed by Martin Storsjö

tls: fix compilation when both gnutls and openssl are enabled

Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
parent 94599a6d
...@@ -213,7 +213,7 @@ static int tls_open(URLContext *h, const char *uri, int flags, AVDictionary **op ...@@ -213,7 +213,7 @@ static int tls_open(URLContext *h, const char *uri, int flags, AVDictionary **op
struct addrinfo hints = { 0 }, *ai = NULL; struct addrinfo hints = { 0 }, *ai = NULL;
const char *proxy_path; const char *proxy_path;
int use_proxy; int use_proxy;
#if CONFIG_OPENSSL #if CONFIG_OPENSSL && !CONFIG_GNUTLS
BIO *bio; BIO *bio;
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment