Removed outdated debug.

This commit is contained in:
Vladimir Homutov 2020-05-14 18:10:53 +03:00
parent d6887ac1f0
commit 92df22200e

View File

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