summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbrad <brad@openbsd.org>2005-05-03 14:33:50 +0000
committerbrad <brad@openbsd.org>2005-05-03 14:33:50 +0000
commit96f19a8ff03a68d884518cad9844e1d2b52bd74c (patch)
tree4b88f4bf8e2de75aa47ac4ca37c80b8cc6e54d21
parentRemove SIGUSR2-related stuff as suggested by ho@. (diff)
downloadwireguard-openbsd-96f19a8ff03a68d884518cad9844e1d2b52bd74c.tar.xz
wireguard-openbsd-96f19a8ff03a68d884518cad9844e1d2b52bd74c.zip
typo, automaticaly -> automatically
-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);