From 514b3fccd799ea2990dc29b292b2cc501aaabed9 Mon Sep 17 00:00:00 2001 From: christos Date: Wed, 30 Aug 2006 17:00:15 +0000 Subject: fix initializer --- sys/net/if_tun.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sys/net') 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 @@ -15,7 +15,7 @@ */ #include -__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 -- cgit