1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-29 03:17:53 -04:00

GNUTLS: #if 0 arrays needed by deprecated functions

src/network/ssl/ssl.c defined some constant arrays for passing to
GnuTLS functions.  Those functions have been deprecated and their
calls are in #if 0 nowadays.  Put #if 0 around the arrays as well.
This commit is contained in:
Kalle Olavi Niemitalo 2011-05-02 14:51:12 +03:00 committed by Kalle Olavi Niemitalo
parent 8a89a627bc
commit 6457a13005

View File

@ -130,6 +130,7 @@ static struct module openssl_module = struct_module(
gnutls_anon_client_credentials_t anon_cred = NULL; gnutls_anon_client_credentials_t anon_cred = NULL;
gnutls_certificate_credentials_t xcred = NULL; gnutls_certificate_credentials_t xcred = NULL;
#if 0
const static int kx_priority[16] = { const static int kx_priority[16] = {
GNUTLS_KX_RSA, GNUTLS_KX_DHE_DSS, GNUTLS_KX_DHE_RSA, GNUTLS_KX_SRP, GNUTLS_KX_RSA, GNUTLS_KX_DHE_DSS, GNUTLS_KX_DHE_RSA, GNUTLS_KX_SRP,
/* Do not use anonymous authentication, unless you know what that means */ /* Do not use anonymous authentication, unless you know what that means */
@ -140,6 +141,7 @@ const static int cipher_priority[16] = {
GNUTLS_CIPHER_3DES_CBC, GNUTLS_CIPHER_AES_256_CBC, GNUTLS_CIPHER_ARCFOUR_40, 0 GNUTLS_CIPHER_3DES_CBC, GNUTLS_CIPHER_AES_256_CBC, GNUTLS_CIPHER_ARCFOUR_40, 0
}; };
const static int cert_type_priority[16] = { GNUTLS_CRT_X509, GNUTLS_CRT_OPENPGP, 0 }; const static int cert_type_priority[16] = { GNUTLS_CRT_X509, GNUTLS_CRT_OPENPGP, 0 };
#endif
static void static void
init_gnutls(struct module *module) init_gnutls(struct module *module)