mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-07-29 18:27:29 +02:00
Don't send null byte
This commit is contained in:
@ -3097,7 +3097,7 @@ THREAD_RETURN WOLFSSL_THREAD client_test(void* args)
|
||||
err == WOLFSSL_ERROR_WANT_WRITE) {
|
||||
(void)ClientWrite(ssl,
|
||||
"msg sent during renegotiation",
|
||||
sizeof("msg sent during renegotiation"),
|
||||
sizeof("msg sent during renegotiation") - 1,
|
||||
"", 1);
|
||||
do {
|
||||
if (err == APP_DATA_READY) {
|
||||
|
Reference in New Issue
Block a user