fix pasto: s/NETISR_CCITT/NETISR_PPP/ at the appropriate place in

netintr().  From Matt Thomas <matt@lkg.dec.com>.
This commit is contained in:
cgd 1996-06-03 18:32:37 +00:00
parent 1530e15480
commit afe080291e
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.19 1996/05/09 23:49:33 cgd Exp $ */
/* $NetBSD: machdep.c,v 1.20 1996/06/03 18:32:37 cgd Exp $ */
/*
* Copyright (c) 1994, 1995, 1996 Carnegie-Mellon University.
@ -1322,7 +1322,7 @@ netintr()
#endif
#ifdef PPP
if (netisr & (1 << NETISR_PPP)) {
netisr &= ~(1 << NETISR_CCITT);
netisr &= ~(1 << NETISR_PPP);
pppintr();
}
#endif