diff options
| author | Sergey Kandaurov <pluknet@nginx.com> | 2021-02-15 14:54:28 +0300 |
|---|---|---|
| committer | Sergey Kandaurov <pluknet@nginx.com> | 2021-02-15 14:54:28 +0300 |
| commit | 407c47074da59f016f99cf04c823080cf7a0b00c (patch) | |
| tree | 401f4b0ba7d2c3c52793dc96693fa6d0ca140ff8 /src/event/quic/ngx_event_quic_transport.c | |
| parent | f86c1e1de1fed4e6e92ecee1ed1609d31e52224c (diff) | |
| download | nginx-407c47074da59f016f99cf04c823080cf7a0b00c.tar.gz nginx-407c47074da59f016f99cf04c823080cf7a0b00c.tar.bz2 | |
QUIC: fixed indentation.
Diffstat (limited to 'src/event/quic/ngx_event_quic_transport.c')
| -rw-r--r-- | src/event/quic/ngx_event_quic_transport.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/event/quic/ngx_event_quic_transport.c b/src/event/quic/ngx_event_quic_transport.c index a849a20dc..01fcc9582 100644 --- a/src/event/quic/ngx_event_quic_transport.c +++ b/src/event/quic/ngx_event_quic_transport.c @@ -492,9 +492,9 @@ ngx_quic_parse_long_header_v1(ngx_quic_header_t *pkt) pkt->level = ssl_encryption_handshake; } else { - ngx_log_error(NGX_LOG_INFO, pkt->log, 0, - "quic bad packet type"); - return NGX_DECLINED; + ngx_log_error(NGX_LOG_INFO, pkt->log, 0, + "quic bad packet type"); + return NGX_DECLINED; } p = ngx_quic_parse_int(p, end, &varint); @@ -738,7 +738,7 @@ ngx_quic_parse_frame(ngx_quic_header_t *pkt, u_char *start, u_char *end, if (p == NULL) { pkt->error = NGX_QUIC_ERR_FRAME_ENCODING_ERROR; ngx_log_error(NGX_LOG_INFO, pkt->log, 0, - "quic failed to obtain quic frame type"); + "quic failed to obtain quic frame type"); return NGX_ERROR; } @@ -1636,8 +1636,8 @@ ngx_quic_parse_transport_params(u_char *p, u_char *end, ngx_quic_tp_t *tp, p = ngx_quic_parse_int(p, end, &len); if (p == NULL) { ngx_log_error(NGX_LOG_INFO, log, 0, - "quic failed to parse" - " transport param id:0x%xL length", id); + "quic failed to parse" + " transport param id:0x%xL length", id); return NGX_ERROR; } |
