mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix the last missing parentheses for a return statement in bpf_filter.c.
This commit is contained in:
parent
7c5db425bf
commit
b87fd66b6d
1 changed files with 1 additions and 1 deletions
|
|
@ -103,7 +103,7 @@ m_xword(struct mbuf *m, bpf_u_int32 k, int *err)
|
|||
cp = mtod(m, u_char *) + k;
|
||||
if (len - k >= 4) {
|
||||
*err = 0;
|
||||
return EXTRACT_LONG(cp);
|
||||
return (EXTRACT_LONG(cp));
|
||||
}
|
||||
m0 = m->m_next;
|
||||
if (m0 == 0 || m0->m_len + len - k < 4)
|
||||
|
|
|
|||
Loading…
Reference in a new issue