mirror of
https://github.com/openssl/openssl.git
synced 2025-02-05 14:10:53 +08:00
Minor fixes
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Neil Horman <nhorman@openssl.org> (Merged from https://github.com/openssl/openssl/pull/22037)
This commit is contained in:
parent
5ec0467a7a
commit
63aaa51b15
@ -132,8 +132,8 @@ QLOG *ossl_qlog_new_from_env(const QLOG_TRACE_INFO *info)
|
||||
for (i = 0; i < info->odcid.id_len; ++i)
|
||||
l += sprintf(filename + l, "%02x", info->odcid.id[i]);
|
||||
|
||||
l += snprintf(filename + l, strl - l, "_%s.sqlog",
|
||||
info->is_server ? "server" : "client");
|
||||
l += BIO_snprintf(filename + l, strl - l, "_%s.sqlog",
|
||||
info->is_server ? "server" : "client");
|
||||
|
||||
qlog = ossl_qlog_new(info);
|
||||
if (qlog == NULL)
|
||||
|
@ -169,7 +169,7 @@ def run():
|
||||
"connectivity:connection_closed"
|
||||
)
|
||||
|
||||
if num_files < 500:
|
||||
if num_files < 300:
|
||||
raise Unexpected(qlogdir, f"unexpectedly few output files: {num_files}")
|
||||
|
||||
for required_event in required_events:
|
||||
|
Loading…
Reference in New Issue
Block a user