From ad4032fe0903e9eec994da39c67a0bcf67cfd92f Mon Sep 17 00:00:00 2001 From: Bosko Milekic Date: Sat, 6 Jan 2001 23:36:42 +0000 Subject: [PATCH] *Blush* Fix a dumb typo in previous commit. Pointed out by: phk --- sys/dev/musycc/musycc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/musycc/musycc.c b/sys/dev/musycc/musycc.c index a992bcb5401..6153a2a211e 100644 --- a/sys/dev/musycc/musycc.c +++ b/sys/dev/musycc/musycc.c @@ -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