artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7e7c80c
)
L2 tun is tap now
author
reyk
<reyk@openbsd.org>
Tue, 19 Jul 2016 17:34:13 +0000
(17:34 +0000)
committer
reyk
<reyk@openbsd.org>
Tue, 19 Jul 2016 17:34:13 +0000
(17:34 +0000)
usr.sbin/switchd/switchd.c
patch
|
blob
|
history
diff --git
a/usr.sbin/switchd/switchd.c
b/usr.sbin/switchd/switchd.c
index
e8db42b
..
19e6bf4
100644
(file)
--- a/
usr.sbin/switchd/switchd.c
+++ b/
usr.sbin/switchd/switchd.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: switchd.c,v 1.
2 2016/07/19 17:31:22
reyk Exp $ */
+/* $OpenBSD: switchd.c,v 1.
3 2016/07/19 17:34:13
reyk Exp $ */
/*
* Copyright (c) 2013-2016 Reyk Floeter <reyk@openbsd.org>
@@
-252,7
+252,7
@@
int
switchd_tap(void)
{
int fd;
- if ((fd = open("/dev/t
un
0", O_WRONLY)) == -1)
+ if ((fd = open("/dev/t
ap
0", O_WRONLY)) == -1)
return (-1);
return (fd);
}