]> git.kaiwu.me - nginx.git/commitdiff
Removed outdated debug.
authorVladimir Homutov <vl@nginx.com>
Thu, 14 May 2020 15:10:53 +0000 (18:10 +0300)
committerVladimir Homutov <vl@nginx.com>
Thu, 14 May 2020 15:10:53 +0000 (18:10 +0300)
src/event/ngx_event_quic_transport.c

index 5d0182032efebe64d06689d51dd633621d5162d4..71fe830d30de73f29f71ffe30317c4d3b0f89849 100644 (file)
@@ -117,7 +117,6 @@ ngx_quic_parse_int(u_char *pos, u_char *end, uint64_t *out)
     ngx_uint_t   len;
 
     if (pos >= end) {
-        printf("OOPS >=\n");
         return NULL;
     }
 
@@ -127,7 +126,6 @@ ngx_quic_parse_int(u_char *pos, u_char *end, uint64_t *out)
     value = *p++ & 0x3f;
 
     if ((size_t)(end - p) < (len - 1)) {
-        printf("LEN TOO BIG: need %ld have %ld\n", len, end - p);
         return NULL;
     }