summaryrefslogtreecommitdiffstats
path: root/sys/net/if_spppsubr.c
diff options
context:
space:
mode:
authorkevlo <kevlo@FreeBSD.org>2014-07-17 05:21:16 +0000
committerkevlo <kevlo@FreeBSD.org>2014-07-17 05:21:16 +0000
commit940bebdcf294d984483cd61b6d4a88977fea6f75 (patch)
tree22e2d86b21247dff956b3abf183217737b1f48bb /sys/net/if_spppsubr.c
parent290120664d418b1539c66b7fee0b42655ae769f1 (diff)
downloadFreeBSD-src-940bebdcf294d984483cd61b6d4a88977fea6f75.zip
FreeBSD-src-940bebdcf294d984483cd61b6d4a88977fea6f75.tar.gz
Deprecate m_act. Use m_nextpkt always.
Diffstat (limited to 'sys/net/if_spppsubr.c')
-rw-r--r--sys/net/if_spppsubr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/net/if_spppsubr.c b/sys/net/if_spppsubr.c
index 74bcfa06..3340612 100644
--- a/sys/net/if_spppsubr.c
+++ b/sys/net/if_spppsubr.c
@@ -4753,7 +4753,7 @@ sppp_qflush(struct ifqueue *ifq)
n = ifq->ifq_head;
while ((m = n)) {
- n = m->m_act;
+ n = m->m_nextpkt;
m_freem (m);
}
ifq->ifq_head = 0;
OpenPOWER on IntegriCloud