Switch idiom of d2i_ECDSA_SIG() invocation
authortb <tb@openbsd.org>
Wed, 30 Nov 2022 12:42:24 +0000 (12:42 +0000)
committertb <tb@openbsd.org>
Wed, 30 Nov 2022 12:42:24 +0000 (12:42 +0000)
commitf0ca6b40da78dfadbe7cf3ff4085924f29f35db8
tree8157b6fd066c1fc33039a4d62d4614603aec0986
parente7e9c19a100249cbebe50a79be8f525908df6d7a
Switch idiom of d2i_ECDSA_SIG() invocation

Instead of the discouraged obj = NULL; d2i_ECDSA_SIG(&obj, ...); use the
recommended obj = d2i_ECDSA_SIG(NULL, ...);. While it makes no difference
here, it's better practice.

suggested by & ok markus
sbin/iked/crypto.c