Rename http_server response delay to not shadow log timestamp format (#506)

This commit is contained in:
Sydney 2024-06-22 20:34:34 +02:00 committed by GitHub
parent 0b9f50b5f0
commit 0e536e04d9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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':