Fix enable session ticket hint

minor string correction, adding a missing `-`
gojimmypi-patch-1
gojimmypi 2023-08-15 08:12:16 -07:00 committed by GitHub
parent f39c0a0330
commit d85561c454
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -313,7 +313,7 @@ int main(int argc, char** argv)
/* Set up to resume the session */
if ((ret = wolfSSL_set_session(sslRes, session)) != WOLFSSL_SUCCESS) {
fprintf(stderr, "Failed to set session, make sure session tickets "
"(--enable-session ticket) is enabled\n");
"(--enable-session-ticket) is enabled\n");
/*goto exit;*/ /* not fatal */
}