summaryrefslogtreecommitdiff
path: root/sys/net/if_tun.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/net/if_tun.c')
-rw-r--r--sys/net/if_tun.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/sys/net/if_tun.c b/sys/net/if_tun.c
index a405633de5f..d59916970e2 100644
--- a/sys/net/if_tun.c
+++ b/sys/net/if_tun.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_tun.c,v 1.188 2019/09/12 01:27:02 dlg Exp $ */
+/* $OpenBSD: if_tun.c,v 1.189 2019/09/12 01:28:29 dlg Exp $ */
/* $NetBSD: if_tun.c,v 1.24 1996/05/07 02:40:48 thorpej Exp $ */
/*
@@ -1043,16 +1043,16 @@ tun_dev_kqfilter(struct tun_softc *tp, struct knote *kn)
TUNDEBUG(("%s: tunkqfilter\n", ifp->if_xname));
switch (kn->kn_filter) {
- case EVFILT_READ:
- klist = &tp->tun_rsel.si_note;
- kn->kn_fop = &tunread_filtops;
- break;
- case EVFILT_WRITE:
- klist = &tp->tun_wsel.si_note;
- kn->kn_fop = &tunwrite_filtops;
- break;
- default:
- return (EINVAL);
+ case EVFILT_READ:
+ klist = &tp->tun_rsel.si_note;
+ kn->kn_fop = &tunread_filtops;
+ break;
+ case EVFILT_WRITE:
+ klist = &tp->tun_wsel.si_note;
+ kn->kn_fop = &tunwrite_filtops;
+ break;
+ default:
+ return (EINVAL);
}
kn->kn_hook = (caddr_t)tp;