We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abc6594 commit d26048aCopy full SHA for d26048a
1 file changed
include/user_settings/finalize.h
@@ -233,4 +233,11 @@
233
# endif
234
#endif
235
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
+
243
#endif /* _WOLFBOOT_USER_SETTINGS_FINALIZE_H_ */
0 commit comments