mirror of
https://github.com/curl/curl.git
synced 2026-07-10 23:07:16 +03:00
```
mod_curltest.c:331:25: warning: result of comparison of unsigned expression >= 0 is always true [-Wtautological-unsigned-zero-compare]
331 | if(chunk_size >= 0) {
| ~~~~~~~~~~ ^ ~
mod_curltest.c:421:9: warning: declaration shadows a local variable [-Wshadow]
421 | int i, hd_len = (16 * 1024);
| ^
mod_curltest.c:288:7: note: previous declaration is here
288 | int i, chunks = 3, error_bucket = 1;
| ^
mod_curltest.c:501:40: warning: format specifies type 'int' but the argument has type 'unsigned int' [-Wformat]
500 | "error_handler: request cleanup, r->status=%d, aborted=%d, "
| ~~
| %u
501 | "close=%d", r->status, c->aborted, close_conn);
| ^~~~~~~~~~
mod_curltest.c:837:1: warning: missing field 'lock' initializer [-Wmissing-field-initializers]
837 | };
| ^
mod_curltest.c:914:43: warning: format specifies type 'int' but the argument has type 'apr_time_t' (aka 'long') [-Wformat]
914 | char *v = apr_psprintf(r->pool, "%d", limitrec.duration_sec);
| ~~ ^~~~~~~~~~~~~~~~~~~~~
| %ld
mod_curltest.c:956:16: warning: unused variable 'rv' [-Wunused-variable]
956 | apr_status_t rv;
| ^~
```
Closes #22214
|
||
|---|---|---|
| .. | ||
| mod_curltest | ||
| __init__.py | ||
| caddy.py | ||
| certs.py | ||
| client.py | ||
| curl.py | ||
| dante.py | ||
| dnsd.py | ||
| env.py | ||
| h2o.py | ||
| httpd.py | ||
| nghttpx.py | ||
| ports.py | ||
| sshd.py | ||
| vsftpd.py | ||
| ws_echo_server.py | ||