Add comment explaining why we don't check a return value
authorMatt Caswell <matt@openssl.org>
Wed, 11 Nov 2015 10:17:22 +0000 (10:17 +0000)
committerMatt Caswell <matt@openssl.org>
Tue, 17 Nov 2015 11:21:17 +0000 (11:21 +0000)
commitae4d0c8d227d0cf4f9f3f7a5d07189c0a18b25fc
tree68954bdc43c6de9f4ac5df05ea1f5faecd9a79d1
parentd73ca3efa74bbb620a1e74deb5eec6f3d10203d5
Add comment explaining why we don't check a return value

A call to X509_verify_cert() is used to build a chain of certs for the
server to send back to the client. It isn't *actually* used for verifying
the cert at all - just building the chain. Therefore the return value is
ignored.

Reviewed-by: Kurt Roeckx <kurt@openssl.org>
ssl/ssl_cert.c