Make IPAddressFamily_cmp() more pleasing on the eye
authortb <tb@openbsd.org>
Tue, 28 Dec 2021 20:07:17 +0000 (20:07 +0000)
committertb <tb@openbsd.org>
Tue, 28 Dec 2021 20:07:17 +0000 (20:07 +0000)
commit52f613d08c032aee86f5b859c45212c243a50ef1
treef83af6cd1f51bf5dbd1e0e1638d9ed372811e896
parent5e62140a10356ce224df6433186bc6133c6ca4fd
Make IPAddressFamily_cmp() more pleasing on the eye

Define and use MINIMUM() instead of a ternary operator and separate
the code from the declarations. Also, we can spare a line to make the
return legible instead of squeezing it into another ternary operator.

addressFamily->data contains a two-bytes AFI and an optional one-byte
SAFI.  This function currently also compares any trailing garbage that
may be present. Since comparison functions can't really error, this
needs to be checked bofore it is used. Such checks will be added in
subsequent commits.

ok jsing
lib/libcrypto/x509/x509_addr.c