diff options
author | Colin Morey <peitolm@gentoo.org> | 2007-03-18 00:03:01 +0000 |
---|---|---|
committer | Colin Morey <peitolm@gentoo.org> | 2007-03-18 00:03:01 +0000 |
commit | b25c3cd8d391774f345022e565fa5d3db854ec40 (patch) | |
tree | 76b32dc19e1d8e9970c486dbb2d04a383971911b /mail-mta | |
parent | Cleanup. (diff) | |
download | gentoo-2-b25c3cd8d391774f345022e565fa5d3db854ec40.tar.gz gentoo-2-b25c3cd8d391774f345022e565fa5d3db854ec40.tar.bz2 gentoo-2-b25c3cd8d391774f345022e565fa5d3db854ec40.zip |
manually adding openssl patch
Diffstat (limited to 'mail-mta')
-rw-r--r-- | mail-mta/exim/files/exim-4.66-openssl.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/mail-mta/exim/files/exim-4.66-openssl.patch b/mail-mta/exim/files/exim-4.66-openssl.patch new file mode 100644 index 000000000000..7e5ddd56411f --- /dev/null +++ b/mail-mta/exim/files/exim-4.66-openssl.patch @@ -0,0 +1,12 @@ +--- exim-4.66/src/tls-openssl.c.orig 2007-03-07 11:38:23.000000000 +0200 ++++ exim-4.66/src/tls-openssl.c 2007-03-07 12:01:07.000000000 +0200 +@@ -343,8 +343,7 @@ + /* Set up the information callback, which outputs if debugging is at a suitable + level. */ + +-if (!(SSL_CTX_set_info_callback(ctx, (void (*)())info_callback))) +- return tls_error(US"SSL_CTX_set_info_callback", host); ++SSL_CTX_set_info_callback(ctx, (void (*)())info_callback); + + /* The following patch was supplied by Robert Roselius */ + |