aboutsummaryrefslogtreecommitdiffstats
path: root/istream.c
diff options
context:
space:
mode:
authorMark Wright <gienah@gentoo.org>2018-10-24 14:00:04 +0000
committerLars Wendler <polynomial-c@gentoo.org>2018-10-24 14:00:04 +0000
commitd10007a2c61709a5b8f7ed6a5e9f4a24ac374c92 (patch)
tree5a5ca39ccbf04e12707afe8e76f50edbd145064b /istream.c
parentUpdate ChangeLog (diff)
downloadw3m-d10007a2c61709a5b8f7ed6a5e9f4a24ac374c92.tar.gz
w3m-d10007a2c61709a5b8f7ed6a5e9f4a24ac374c92.zip
Do not use deprecated features with openssl-1.1
Diffstat (limited to '')
-rw-r--r--istream.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/istream.c b/istream.c
index 1387307..4989a4f 100644
--- a/istream.c
+++ b/istream.c
@@ -421,7 +421,11 @@ ssl_check_cert_ident(X509 * x, char *hostname)
for (i = 0; i < n; i++) {
gn = sk_GENERAL_NAME_value(alt, i);
if (gn->type == GEN_DNS) {
+#if (OPENSSL_VERSION_NUMBER < 0x10100000L) || defined(LIBRESSL_VERSION_NUMBER)
char *sn = ASN1_STRING_data(gn->d.ia5);
+#else
+ char *sn = ASN1_STRING_get0_data(gn->d.ia5);
+#endif
int sl = ASN1_STRING_length(gn->d.ia5);
if (!seen_dnsname)