CVSROOT: /cvs Module name: src Changes by: t...@cvs.openbsd.org 2024/04/17 07:54:39
Modified files: lib/libcrypto/ec: ec_ameth.c Log message: Use error checked X509_ALGOR_set0_by_nid While setting the parameters to type V_ASN1_UNDEF can't actually fail, it is cleaner to just do the check. Using the by_nid() variant also removes the need for an unchecked nested OBJ_nid2obj() call. ok jsing