CVSROOT: /cvs
Module name: ports
Changes by: [email protected] 2026/06/10 07:27:55
Added files:
security/opensc/patches: patch-src_sm_sm-common_c
Log message:
opensc passes pointers to unsigned int to DES_encrypt[123] functions.
this breaks on i386 with LLVM 22's more restrictive checks as the types
of the variable pointed to don't match (the functions want DES_LONG *,
which is an unsigned long on i386). change to passing pointers to DES_LONG
instead, fixing i386, and a noop on other archs. ok tb@