CVSROOT: /cvs Module name: src Changes by: [email protected] 2023/12/31 00:10:50
Modified files:
lib/libcrypto/x509: x509_purp.c
Log message:
Replace the sorted extensions lookup with a switch
If all you have is OBJ_bsearch_(), everything looks like a nail. This
changes a binary search over a list of 12 elements with a lookup via
a switch.
switch suggested by claudio
ok jsing
