summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
Diffstat (limited to 'sys')
-rw-r--r--sys/net/if_tun.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/if_tun.c b/sys/net/if_tun.c
index 327006bde8e..218dd549022 100644
--- a/sys/net/if_tun.c
+++ b/sys/net/if_tun.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_tun.c,v 1.64 2004/11/11 10:42:04 mpf Exp $ */
+/* $OpenBSD: if_tun.c,v 1.65 2005/05/03 14:33:50 brad Exp $ */
/* $NetBSD: if_tun.c,v 1.24 1996/05/07 02:40:48 thorpej Exp $ */
/*
@@ -330,7 +330,7 @@ tunopen(dev_t dev, int flag, int mode, struct proc *p)
ifp = &tp->tun_if;
tp->tun_flags |= TUN_OPEN;
- /* automaticaly UP the interface on open */
+ /* automatically UP the interface on open */
s = splimp();
if_up(ifp);
splx(s);