TLS: fix wrong debug text

fix wrong debug text
This commit is contained in:
zhangzhilei 2022-08-11 10:39:24 +08:00 committed by A Wireshark GitLab Utility
parent 61e1da8e86
commit 1bdf7427b6
1 changed files with 1 additions and 1 deletions

View File

@ -4476,7 +4476,7 @@ create_decoders:
ssl_debug_printf("%s ssl_create_decoder(server)\n", G_STRFUNC);
ssl_session->server_new = ssl_create_decoder(cipher_suite, cipher_algo, ssl_session->session.compression, s_mk, s_wk, s_iv, write_iv_len);
if (!ssl_session->server_new) {
ssl_debug_printf("%s can't init client decoder\n", G_STRFUNC);
ssl_debug_printf("%s can't init server decoder\n", G_STRFUNC);
goto fail;
}