Skip to content

Commit d26048a

Browse files
committed
add XTOLOWER() in finalize.h to fix CI failures
1 parent abc6594 commit d26048a

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

include/user_settings/finalize.h

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -233,4 +233,11 @@
233233
# endif
234234
#endif
235235

236+
/* base.h skips the XTOLOWER definition under WOLFSSL_ARMASM (the asm port
237+
* doesn't link tolower); CTYPE_USER still suppresses wolfCrypt's default,
238+
* so provide an identity fallback for asn.c's case-insensitive name match. */
239+
#ifndef XTOLOWER
240+
# define XTOLOWER(x) (x)
241+
#endif
242+
236243
#endif /* _WOLFBOOT_USER_SETTINGS_FINALIZE_H_ */

0 commit comments

Comments
 (0)