CVSROOT: /cvs Module name: src Changes by: t...@cvs.openbsd.org 2022/11/30 05:42:24
Modified files: sbin/iked : crypto.c Log message: 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