diff options
| author | Sergey Kandaurov <pluknet@nginx.com> | 2020-03-05 13:10:01 +0300 |
|---|---|---|
| committer | Sergey Kandaurov <pluknet@nginx.com> | 2020-03-05 13:10:01 +0300 |
| commit | 941d4f1c2ebd6da06fcbda24a71c974166024ef3 (patch) | |
| tree | 15c8e6b10757b163f4ba99d9f2345b27812f765a /src | |
| parent | 0bc9857b47b17c85eacb79f828485fd27e70a9b5 (diff) | |
| download | nginx-941d4f1c2ebd6da06fcbda24a71c974166024ef3.tar.gz nginx-941d4f1c2ebd6da06fcbda24a71c974166024ef3.tar.bz2 | |
Fixed packet "input" debug log message.
Diffstat (limited to 'src')
| -rw-r--r-- | src/event/ngx_event_quic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/event/ngx_event_quic.c b/src/event/ngx_event_quic.c index 89bcb445a..ee8a0c716 100644 --- a/src/event/ngx_event_quic.c +++ b/src/event/ngx_event_quic.c @@ -1203,7 +1203,7 @@ ngx_quic_handshake_input(ngx_connection_t *c, ngx_buf_t *bb) p = bb->pos; b = bb->start; - ngx_quic_hexdump0(c->log, "input", buf, n); + ngx_quic_hexdump0(c->log, "input", p, n); if ((p[0] & 0xf0) != NGX_QUIC_PKT_HANDSHAKE) { ngx_log_error(NGX_LOG_INFO, c->log, 0, "invalid packet type"); |
