diff options
author | 2000-01-14 05:16:03 +0000 | |
---|---|---|
committer | 2000-01-14 05:16:03 +0000 | |
commit | 985d2d013760c1dd05002e491a6cd327feb4db30 (patch) | |
tree | f6352ca80a6f1214776a1b0caa350aa77165cae0 | |
parent | remove unneeded flag (diff) | |
download | wireguard-openbsd-985d2d013760c1dd05002e491a6cd327feb4db30.tar.xz wireguard-openbsd-985d2d013760c1dd05002e491a6cd327feb4db30.zip |
fix ipv6 typo.
-rw-r--r-- | sys/arch/powerpc/powerpc/machdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/powerpc/powerpc/machdep.c b/sys/arch/powerpc/powerpc/machdep.c index 46e5db99be3..6bd87cf9ae5 100644 --- a/sys/arch/powerpc/powerpc/machdep.c +++ b/sys/arch/powerpc/powerpc/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.29 1999/11/28 23:36:16 rahnds Exp $ */ +/* $OpenBSD: machdep.c,v 1.30 2000/01/14 05:16:03 rahnds Exp $ */ /* $NetBSD: machdep.c,v 1.4 1996/10/16 19:33:11 ws Exp $ */ /* @@ -743,7 +743,7 @@ softnet(isr) #endif #ifdef INET6 if (isr & (1 << NETISR_IPV6)) - ipv6intr(); + ip6intr(); #endif #ifdef NETATALK if (isr & (1 << NETISR_ATALK)) |