diff options
author | 1997-07-23 06:23:58 +0000 | |
---|---|---|
committer | 1997-07-23 06:23:58 +0000 | |
commit | 06efc032bda0ee5652c20f64f95516a66adcc430 (patch) | |
tree | 3f9e05363bcf1e8e50f45f586458549dad05c1e5 | |
parent | Add a seteuid() just in case someone decides to make this setuid (diff) | |
download | wireguard-openbsd-06efc032bda0ee5652c20f64f95516a66adcc430.tar.xz wireguard-openbsd-06efc032bda0ee5652c20f64f95516a66adcc430.zip |
Add AppleTalk netisr.
-rw-r--r-- | sys/arch/alpha/alpha/machdep.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/alpha/alpha/machdep.c b/sys/arch/alpha/alpha/machdep.c index 999f792104f..496f292bd48 100644 --- a/sys/arch/alpha/alpha/machdep.c +++ b/sys/arch/alpha/alpha/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.21 1997/07/08 10:55:54 niklas Exp $ */ +/* $OpenBSD: machdep.c,v 1.22 1997/07/23 06:23:58 denny Exp $ */ /* $NetBSD: machdep.c,v 1.61 1996/12/07 01:54:49 cgd Exp $ */ /* @@ -1487,6 +1487,9 @@ netintr() DONETISR(NETISR_ARP, arpintr()); DONETISR(NETISR_IP, ipintr()); #endif +#ifdef NETATALK + DONETISR(NETISR_ATALK, atintr()); +#endif #ifdef NS DONETISR(NETISR_NS, nsintr()); #endif |