FreeBSD Bugzilla – Attachment 199028 Details for
Bug 229021
devel/p4 Fails to build with OpenSSL 1.1
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch to fix the build with OpenSSL 1.1.1
patch-netsslcredentials.cc (text/plain), 541 bytes, created by
Kenneth D. Merry
on 2018-11-06 22:06:06 UTC
(
hide
)
Description:
Patch to fix the build with OpenSSL 1.1.1
Filename:
MIME Type:
Creator:
Kenneth D. Merry
Created:
2018-11-06 22:06:06 UTC
Size:
541 bytes
patch
obsolete
>--- net/netsslcredentials.cc.old 2018-02-05 20:46:46.000000000 +0000 >+++ net/netsslcredentials.cc 2018-11-06 19:53:58.183556000 +0000 >@@ -218,7 +218,7 @@ NetSslCredentials::ReadCredentials( Error *e ) > privateKey = PEM_read_PrivateKey(fp, NULL, 0, NULL ); > SSLNULLHANDLER( privateKey, e, "NetSslCredentials::ReadCredentials PEM_read_PrivateKey", failSetError ); > // verify that RSA key >- if (privateKey->type != EVP_PKEY_RSA) >+ if (EVP_PKEY_base_id(privateKey) != EVP_PKEY_RSA) > { > e->Set( MsgRpc::SslKeyNotRSA ); > goto fail;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 229021
:
198708
|
199027
|
199028
|
199033
|
199071
|
199084