diff src/event/quic/ngx_event_quic_transport.c @ 8702:d4e02b3b734f quic

QUIC: fixed indentation.
author Sergey Kandaurov <pluknet@nginx.com>
date Mon, 15 Feb 2021 14:54:28 +0300
parents 75603531064a
children d710c457171c
line wrap: on
line diff
--- 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_h
         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 *
     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 = 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;
         }