mirror of
https://github.com/curl/curl.git
synced 2026-08-26 08:33:31 +03:00
tidy-up: miscellaneous
- INSTALL-CMAKE.md: add missing periods, text fixes. - md4, md5: sync variables names. - curl_trc: sync an argument type. - docs/examples: sync debug/trace function copies, constify, tidy-ups. - replace commented code with `#if 0`. - drop redundant parenthesis (macro values, `return`, around single variables, function calls). - fix indentation, apply clang-format in places. Closes #20481
This commit is contained in:
parent
ca5efd02b6
commit
3003c32cb2
62 changed files with 291 additions and 281 deletions
|
|
@ -1607,7 +1607,6 @@ static CURLcode h3_stream_open(struct Curl_cfilter *cf,
|
|||
0, pnwritten);
|
||||
if(result)
|
||||
goto out;
|
||||
|
||||
if(!stream->h1.done) {
|
||||
/* need more data */
|
||||
goto out;
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@
|
|||
#include "../vtls/vtls.h"
|
||||
|
||||
/* HTTP/3 error values defined in RFC 9114, ch. 8.1 */
|
||||
#define CURL_H3_NO_ERROR (0x0100)
|
||||
#define CURL_H3_NO_ERROR 0x0100
|
||||
|
||||
#define QUIC_MAX_STREAMS (100)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue