aboutsummaryrefslogtreecommitdiff
path: root/libs/getdns/patches/001-openssl-deprecated.patch
Commit message (Collapse)AuthorAge
* getdns: fix compilation with OPENSSL_NO_DEPRECATEDAndre Heider2023-05-01
SSL_get_peer_certificate() is deprecated, OpenSSL v3.0 added SSL_get0_peer_certificate() and SSL_get1_peer_certificate(). Use the latter since the return value is explicitely X509_free()ed here, see [0]. [0] https://www.openssl.org/docs/manmaster/man3/SSL_get_peer_certificate.html Signed-off-by: Andre Heider <a.heider@gmail.com>