From 3f80cc03fd52b527de2a18760582c680ea619c40 Mon Sep 17 00:00:00 2001 From: Jack F Vogel Date: Thu, 11 Jul 2013 03:44:06 +0000 Subject: [PATCH] Fix my last commit, flags rather than flag... duh. MFC after: 2 days --- sys/dev/ixgbe/ixgbe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/ixgbe/ixgbe.c b/sys/dev/ixgbe/ixgbe.c index 3b645e860270..21159ebde59a 100644 --- a/sys/dev/ixgbe/ixgbe.c +++ b/sys/dev/ixgbe/ixgbe.c @@ -3943,7 +3943,7 @@ ixgbe_free_receive_ring(struct rx_ring *rxr) rxbuf->buf->m_flags |= M_PKTHDR; m_freem(rxbuf->buf); rxbuf->buf = NULL; - rxbuf->flag = 0; + rxbuf->flags = 0; } } }