Module Name: src Committed By: yamt Date: Mon Jan 28 15:01:14 UTC 2013
Modified Files: src/sys/net: if_tap.c Log Message: whitespace To generate a diff of this commit: cvs rdiff -u -r1.68 -r1.69 src/sys/net/if_tap.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/net/if_tap.c diff -u src/sys/net/if_tap.c:1.68 src/sys/net/if_tap.c:1.69 --- src/sys/net/if_tap.c:1.68 Sat Oct 27 17:18:39 2012 +++ src/sys/net/if_tap.c Mon Jan 28 15:01:13 2013 @@ -1,4 +1,4 @@ -/* $NetBSD: if_tap.c,v 1.68 2012/10/27 17:18:39 chs Exp $ */ +/* $NetBSD: if_tap.c,v 1.69 2013/01/28 15:01:13 yamt Exp $ */ /* * Copyright (c) 2003, 2004, 2008, 2009 The NetBSD Foundation. @@ -33,7 +33,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: if_tap.c,v 1.68 2012/10/27 17:18:39 chs Exp $"); +__KERNEL_RCSID(0, "$NetBSD: if_tap.c,v 1.69 2013/01/28 15:01:13 yamt Exp $"); #if defined(_KERNEL_OPT) @@ -1055,7 +1055,7 @@ tap_dev_write(int unit, struct uio *uio, m->m_pkthdr.rcvif = ifp; bpf_mtap(ifp, m); - s =splnet(); + s = splnet(); (*ifp->if_input)(ifp, m); splx(s);