aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorVladimir Homutov <vl@nginx.com>2020-04-03 16:33:59 +0300
committerVladimir Homutov <vl@nginx.com>2020-04-03 16:33:59 +0300
commit4cfc98c63f624d79366e71c14dbc1d063e2f333d (patch)
tree20540845f31355e93b0d05317c5bc06f9810cdc2 /src
parentb3300b522075d57d8d5ba60dee780f3ad6333f88 (diff)
downloadnginx-4cfc98c63f624d79366e71c14dbc1d063e2f333d.tar.gz
nginx-4cfc98c63f624d79366e71c14dbc1d063e2f333d.zip
Removed unneccesary milliseconds conversion.
Diffstat (limited to 'src')
-rw-r--r--src/event/ngx_event_quic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/event/ngx_event_quic.c b/src/event/ngx_event_quic.c
index e746a375a..3278176ca 100644
--- a/src/event/ngx_event_quic.c
+++ b/src/event/ngx_event_quic.c
@@ -1574,7 +1574,7 @@ ngx_quic_output(ngx_connection_t *c)
}
if (!qc->retry.timer_set && !qc->closing) {
- ngx_add_timer(&qc->retry, qc->tp.max_ack_delay * 1000);
+ ngx_add_timer(&qc->retry, qc->tp.max_ack_delay);
}
return NGX_OK;