comparison src/event/ngx_event_quic.c @ 8140:ec04dbb77fb7 quic

QUIC: fixed format specifier in debug message.
author Vladimir Homutov <vl@nginx.com>
date Wed, 07 Oct 2020 15:29:23 +0300
parents 07971f870879
children d564e8850975
comparison
equal deleted inserted replaced
8139:07971f870879 8140:ec04dbb77fb7
1636 1636
1637 qc = c->quic; 1637 qc = c->quic;
1638 1638
1639 ngx_log_debug8(NGX_LOG_DEBUG_EVENT, c->log, 0, 1639 ngx_log_debug8(NGX_LOG_DEBUG_EVENT, c->log, 0,
1640 "quic pkt done %s decr:%d pn:%L pe:%ui rc:%i" 1640 "quic pkt done %s decr:%d pn:%L pe:%ui rc:%i"
1641 " closing:%d err:%d %s", 1641 " closing:%d err:%ui %s",
1642 ngx_quic_level_name(pkt.level), pkt.decrypted, 1642 ngx_quic_level_name(pkt.level), pkt.decrypted,
1643 pkt.pn, pkt.error, rc, (qc && qc->closing) ? 1 : 0, 1643 pkt.pn, pkt.error, rc, (qc && qc->closing) ? 1 : 0,
1644 qc ? qc->error : 0, 1644 qc ? qc->error : 0,
1645 (qc && qc->error_reason) ? qc->error_reason : ""); 1645 (qc && qc->error_reason) ? qc->error_reason : "");
1646 } else { 1646 } else {