mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 01:30:30 -04:00
*Blush* Fix a dumb typo in previous commit.
Pointed out by: phk
This commit is contained in:
parent
39567f8cee
commit
ad4032fe09
1 changed files with 1 additions and 1 deletions
|
|
@ -1207,7 +1207,7 @@ musycc_connect(hook_p hook)
|
|||
if (m == NULL)
|
||||
goto errfree;
|
||||
MCLGET(m, M_TRYWAIT);
|
||||
if ((m->m_flags M_EXT) == 0) {
|
||||
if ((m->m_flags & M_EXT) == 0) {
|
||||
/* We've waited mbuf_wait and still got nothing.
|
||||
We're calling with M_TRYWAIT anyway - a little
|
||||
defensive programming costs us very little - if
|
||||
|
|
|
|||
Loading…
Reference in a new issue