]> granicus.if.org Git - neomutt/commit
More openssl1.1 fixes: remove uses of X509->name in debugging. (closes #3870)
authorKevin McCarthy <kevin@8t8.us>
Sun, 20 Nov 2016 03:35:07 +0000 (19:35 -0800)
committerKevin McCarthy <kevin@8t8.us>
Sun, 20 Nov 2016 03:35:07 +0000 (19:35 -0800)
commitc2919f946b1100931bc555d4710f2d4fa13598af
treec6f1038012d254cec9589c6c5aa320b576fb16dd
parent60dc189676a6b25557bee72d6abd4a91b92ca4df
More openssl1.1 fixes: remove uses of X509->name in debugging. (closes #3870)

X509->name was a shortcut for the longer
  name = X509_NAME_oneline (X509_get_subject_name (cert),
    buf, sizeof (buf));
invocation.  Change the debugging to print the cert name and chain
names in the ssl_check_certificate() loop instead.
mutt_ssl.c