Rename http_server response delay to not shadow log timestamp format

This commit is contained in:
Funkeleinhorn 2024-06-22 16:31:43 +02:00
parent 0b9f50b5f0
commit 85f6a34a1c
No known key found for this signature in database
GPG key ID: C7BEA25A0A335A72

View file

@ -1777,7 +1777,7 @@ usage (const char *prog)
" write; negative means always use remaining file size.\n"
" Incompatible with -w.\n"
#endif
" -y DELAY Delay response for this many seconds -- use for debugging\n"
" -Y DELAY Delay response for this many seconds -- use for debugging\n"
" -Q ALPN Use hq mode; ALPN could be \"hq-29\", for example.\n"
, prog);
}
@ -1987,7 +1987,7 @@ main (int argc, char **argv)
"cannot use -P\n");
exit(EXIT_FAILURE);
#endif
case 'y':
case 'Y':
server_ctx.delay_resp_sec = atoi(optarg);
break;
case 'h':