mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 09:48:00 -04:00
23 lines
846 B
Plaintext
23 lines
846 B
Plaintext
$NetBSD: patch-ab,v 1.3 2008/07/21 12:10:49 shannonjr Exp $
|
|
|
|
--- src/tls-auth.c.orig 2008-07-18 08:32:52.000000000 -0600
|
|
+++ src/tls-auth.c
|
|
@@ -269,6 +269,7 @@ int tls_auth_connection(prelude_client_p
|
|
void *cred;
|
|
int ret, fd;
|
|
gnutls_session session;
|
|
+ int cipher_list[2];
|
|
|
|
if ( ! priority_set ) {
|
|
ret = tls_auth_init_priority(NULL);
|
|
@@ -285,6 +286,9 @@ int tls_auth_connection(prelude_client_p
|
|
return prelude_error_verbose(PRELUDE_ERROR_PROFILE, "TLS initialization error: %s", gnutls_strerror(ret));
|
|
|
|
set_default_priority(session);
|
|
+ cipher_list[0] = GNUTLS_CIPHER_AES_128_CBC;
|
|
+ cipher_list[1] = 0;
|
|
+ gnutls_cipher_set_priority (session, cipher_list);
|
|
gnutls_credentials_set(session, GNUTLS_CRD_CERTIFICATE, cred);
|
|
|
|
fd = prelude_io_get_fd(io);
|