]> granicus.if.org Git - mutt/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)
commitd746e02aa40d68d0a3ae6671f233ea6d0d7d8ac5
treefbe6b9ef87121b74327dca0f98385b9aea0e82d7
parent9fa9c5a9fead864d3a313906a255750a620f1b5b
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