Skip to content

Commit 136738f

Browse files
committed
Avoid mult-byte code error
1 parent 58318f9 commit 136738f

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

examples/client/client.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1859,7 +1859,9 @@ THREAD_RETURN WOLFSSL_THREAD client_test(void* args)
18591859
{ "wolfsentry-config", 1, 256 },
18601860
#endif
18611861
{ "help", 0, 257 },
1862+
#ifndef NO_MULTIBYTE_PRINT
18621863
{ "ヘルプ", 0, 258 },
1864+
#endif
18631865
#if defined(HAVE_PQC)
18641866
{ "pqc", 1, 259 },
18651867
#endif

examples/server/server.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1399,7 +1399,9 @@ THREAD_RETURN WOLFSSL_THREAD server_test(void* args)
13991399
{ "wolfsentry-config", 1, 256 },
14001400
#endif
14011401
{ "help", 0, 257 },
1402+
#ifndef NO_MULTIBYTE_PRINT
14021403
{ "ヘルプ", 0, 258 },
1404+
#endif
14031405
#if defined(HAVE_PQC)
14041406
{ "pqc", 1, 259 },
14051407
#endif

0 commit comments

Comments
 (0)