]> git.ipfire.org Git - people/ms/ipfire-3.x.git/blob - pkgs/vsftpd/patches/vsftpd-2.2.0-openssl.patch
Change file layout of the makefiles.
[people/ms/ipfire-3.x.git] / pkgs / vsftpd / patches / vsftpd-2.2.0-openssl.patch
1 diff -up vsftpd-2.2.0/ssl.c.openssl vsftpd-2.2.0/ssl.c
2 --- vsftpd-2.2.0/ssl.c.openssl 2009-01-09 21:47:05.000000000 +0100
3 +++ vsftpd-2.2.0/ssl.c 2009-08-22 20:41:58.000000000 +0200
4 @@ -537,7 +537,11 @@ get_ssl(struct vsf_session* p_sess, int
5 if (tunable_debug_ssl)
6 {
7 const char* p_ssl_version = SSL_get_cipher_version(p_ssl);
8 +#if OPENSSL_VERSION_NUMBER >= 0x10000000L
9 + const SSL_CIPHER* p_ssl_cipher = SSL_get_current_cipher(p_ssl);
10 +#else
11 SSL_CIPHER* p_ssl_cipher = SSL_get_current_cipher(p_ssl);
12 +#endif
13 const char* p_cipher_name = SSL_CIPHER_get_name(p_ssl_cipher);
14 X509* p_ssl_cert = SSL_get_peer_certificate(p_ssl);
15 int reused = SSL_session_reused(p_ssl);