diff options
Diffstat (limited to 'dev-libs/openssl/files/openssl-1.0.1m-s_client-verify.patch')
-rw-r--r-- | dev-libs/openssl/files/openssl-1.0.1m-s_client-verify.patch | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/dev-libs/openssl/files/openssl-1.0.1m-s_client-verify.patch b/dev-libs/openssl/files/openssl-1.0.1m-s_client-verify.patch deleted file mode 100644 index 8aa29e488f5..00000000000 --- a/dev-libs/openssl/files/openssl-1.0.1m-s_client-verify.patch +++ /dev/null @@ -1,21 +0,0 @@ -https://bugs.gentoo.org/472584 -http://rt.openssl.org/Ticket/Display.html?id=2387&user=guest&pass=guest - -fix verification handling in s_client. when loading paths, make sure -we properly fallback to setting the default paths. - -Forward-ported from openssl-1.0.1e-s_client-verify.patch - -Signed-off-by: Lars Wendler <polynomial-c@gentoo.org> - ---- openssl-1.0.1m/apps/s_client.c -+++ openssl-1.0.1m/apps/s_client.c -@@ -1177,7 +1177,7 @@ int MAIN(int argc, char **argv) - if (!set_cert_key_stuff(ctx, cert, key)) - goto end; - -- if ((!SSL_CTX_load_verify_locations(ctx, CAfile, CApath)) || -+ if ((!SSL_CTX_load_verify_locations(ctx, CAfile, CApath)) && - (!SSL_CTX_set_default_verify_paths(ctx))) { - /* - * BIO_printf(bio_err,"error setting default verify locations\n"); |