summaryrefslogtreecommitdiff
path: root/sys/net
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2006-08-30 17:00:15 +0000
committerchristos <christos@NetBSD.org>2006-08-30 17:00:15 +0000
commit514b3fccd799ea2990dc29b292b2cc501aaabed9 (patch)
tree5557cf7043286f6ecc11cec7b09efb27cd5a5f45 /sys/net
parent9d7a9c40796cb90ade395773d2fda77e090d69fd (diff)
fix initializer
Diffstat (limited to 'sys/net')
-rw-r--r--sys/net/if_tun.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/net/if_tun.c b/sys/net/if_tun.c
index 4304275da1b..983aba32a3f 100644
--- a/sys/net/if_tun.c
+++ b/sys/net/if_tun.c
@@ -1,4 +1,4 @@
-/* $NetBSD: if_tun.c,v 1.90 2006/07/23 22:06:13 ad Exp $ */
+/* $NetBSD: if_tun.c,v 1.91 2006/08/30 17:00:15 christos Exp $ */
/*
* Copyright (c) 1988, Julian Onions <jpo@cs.nott.ac.uk>
@@ -15,7 +15,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_tun.c,v 1.90 2006/07/23 22:06:13 ad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_tun.c,v 1.91 2006/08/30 17:00:15 christos Exp $");
#include "opt_inet.h"
#include "opt_ns.h"
@@ -103,7 +103,7 @@ static dev_type_kqfilter(tunkqfilter);
const struct cdevsw tun_cdevsw = {
tunopen, tunclose, tunread, tunwrite, tunioctl,
- nostop, notty, tunpoll, nommap, tunkqfilter,
+ nostop, notty, tunpoll, nommap, tunkqfilter, D_OTHER,
};
void