comparison src/http/v3/ngx_http_v3_request.c @ 8283:a9034b10dacc quic

HTTP/3: fixed format specifier.
author Roman Arutyunyan <arut@nginx.com>
date Mon, 01 Feb 2021 18:48:18 +0300
parents 6bd8ed493b85
children 3057bae4dba7
comparison
equal deleted inserted replaced
8282:6bd8ed493b85 8283:a9034b10dacc
1032 } 1032 }
1033 1033
1034 if (max != -1 && (uint64_t) (max - rb->received) < st->length) { 1034 if (max != -1 && (uint64_t) (max - rb->received) < st->length) {
1035 ngx_log_error(NGX_LOG_ERR, r->connection->log, 0, 1035 ngx_log_error(NGX_LOG_ERR, r->connection->log, 0,
1036 "client intended to send too large " 1036 "client intended to send too large "
1037 "body: %O+%uL bytes", 1037 "body: %O+%ui bytes",
1038 rb->received, st->length); 1038 rb->received, st->length);
1039 1039
1040 return NGX_HTTP_REQUEST_ENTITY_TOO_LARGE; 1040 return NGX_HTTP_REQUEST_ENTITY_TOO_LARGE;
1041 } 1041 }
1042 1042