diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2007-03-23 10:38:58 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2007-03-23 10:38:58 +0000 |
commit | e805bc5e485c3671f56fb5453e28bd5400d925ab (patch) | |
tree | b1139c187f93032f4d9b50574151e5fdb074d6dd /mail/exim/files | |
parent | 7bb18580e1ab42e6649ff3ca0156bafb10b594ac (diff) |
Notes
Diffstat (limited to 'mail/exim/files')
-rw-r--r-- | mail/exim/files/patch-src_tls-openssl.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/mail/exim/files/patch-src_tls-openssl.c b/mail/exim/files/patch-src_tls-openssl.c new file mode 100644 index 000000000000..5a4ae9556328 --- /dev/null +++ b/mail/exim/files/patch-src_tls-openssl.c @@ -0,0 +1,15 @@ + +$FreeBSD$ + +--- src/tls-openssl.c.orig ++++ src/tls-openssl.c +@@ -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 */ + |