View | Details | Raw Unified | Return to bug 283799
Collapse All | Expand All

(-)b/contrib/tcpdump/print-pflog.c (-2 / +2 lines)
Lines 119-126 pflog_print(netdissect_options *ndo, const struct pfloghdr *hdr) Link Here
119
119
120
	ND_PRINT("%s", tok2str(pf_reasons, "unkn(%u)", GET_U_1(hdr->reason)));
120
	ND_PRINT("%s", tok2str(pf_reasons, "unkn(%u)", GET_U_1(hdr->reason)));
121
121
122
	if (GET_BE_U_4(hdr->uid) != UID_MAX)
122
	if (GET_HE_U_4(hdr->uid) != UID_MAX)
123
		ND_PRINT(" [uid %u]", (unsigned)GET_BE_U_4(hdr->uid));
123
		ND_PRINT(" [uid %u]", GET_HE_U_4(hdr->uid));
124
124
125
	if (ridentifier != 0)
125
	if (ridentifier != 0)
126
		ND_PRINT(" [ridentifier %u]", ridentifier);
126
		ND_PRINT(" [ridentifier %u]", ridentifier);

Return to bug 283799