alibaba / xquic

XQUIC Library released by Alibaba is a cross-platform implementation of QUIC and HTTP/3 protocol.
Apache License 2.0
1.65k stars 326 forks source link

[Bug]: 日志打印英文单词拼写错误 #195

Closed adcen0107 closed 1 year ago

adcen0107 commented 2 years ago

What happened?

xqc_crypto.c 函数 xqc_crypto_t xqc_crypto_create(uint32_t cipher_id, xqc_log_t log) 第114行 xqc_log(log, XQC_LOG_ERROR, "|not supoort cipher_id|%u|", cipher_id);

Steps To Reproduce

xqc_log(log, XQC_LOG_ERROR, "|not supoort cipher_id|%u|", cipher_id); 单词拼写错误,正确的应该是: xqc_log(log, XQC_LOG_ERROR, "|not support cipher_id|%u|", cipher_id);

Relevant log output

No response