Fix a spelling error I forgot to bring over from my personal version

of the last (IF_ENQ_DROP) commit.
This commit is contained in:
Garrett Wollman 1996-07-23 14:44:46 +00:00
parent 30c690ce79
commit f12c3c93de
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=17258

View file

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)if.h 8.1 (Berkeley) 6/10/93
* $Id: if.h,v 1.29 1996/06/10 23:07:28 gpalmer Exp $
* $Id: if.h,v 1.30 1996/07/22 20:06:01 wollman Exp $
*/
#ifndef _NET_IF_H_
@ -259,7 +259,7 @@ struct ifnet {
static inline int
if_queue_drop(struct ifqueue *ifq, struct mbuf *m)
{
IF_QDROP(ifq);
IF_DROP(ifq);
return 0;
}