Code formatting sync to trustedbsd_mac: don't perform an assignment

in an if clause.

PR:
Submitted by:
Reviewed by:
Approved by:
Obtained from:
MFC after:
This commit is contained in:
Robert Watson 2002-08-15 22:04:31 +00:00
parent f898f7c5b2
commit 365433d9b8

View File

@ -325,8 +325,8 @@ udp_input(m, off)
policyfail = 1;
#endif
if (!policyfail) {
if ((n = m_copy(m, 0, M_COPYALL))
!= NULL)
n = m_copy(m, 0, M_COPYALL);
if (n != NULL)
udp_append(last, ip, n,
iphlen +
sizeof(struct udphdr));