]> 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)
committerRichard Russon <rich@flatcap.org>
Thu, 24 Nov 2016 19:28:14 +0000 (19:28 +0000)
commit1e49ba05e907685bae447bc40519822bb10bfe37
treed7e890631a3f0669fce769ff749ac8600c450bc3
parent302ed7e62cc788bac3e710d96d7a87cdc66867d9
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