Module Name:    src
Committed By:   skrll
Date:           Sun Feb 12 09:47:32 UTC 2017

Modified Files:
        src/sys/net: if_tap.c

Log Message:
Whitespace


To generate a diff of this commit:
cvs rdiff -u -r1.98 -r1.99 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.98 src/sys/net/if_tap.c:1.99
--- src/sys/net/if_tap.c:1.98	Sun Feb 12 08:51:45 2017
+++ src/sys/net/if_tap.c	Sun Feb 12 09:47:31 2017
@@ -1,4 +1,4 @@
-/*	$NetBSD: if_tap.c,v 1.98 2017/02/12 08:51:45 skrll Exp $	*/
+/*	$NetBSD: if_tap.c,v 1.99 2017/02/12 09:47:31 skrll 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.98 2017/02/12 08:51:45 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_tap.c,v 1.99 2017/02/12 09:47:31 skrll Exp $");
 
 #if defined(_KERNEL_OPT)
 
@@ -251,13 +251,13 @@ tapattach(int n)
 static void
 tapinit(void)
 {
-        int error = config_cfattach_attach(tap_cd.cd_name, &tap_ca);
-        if (error) {
-                aprint_error("%s: unable to register cfattach\n",
-                    tap_cd.cd_name);
-                (void)config_cfdriver_detach(&tap_cd);
-                return;
-        }
+	int error = config_cfattach_attach(tap_cd.cd_name, &tap_ca);
+	if (error) {
+		aprint_error("%s: unable to register cfattach\n",
+		    tap_cd.cd_name);
+		(void)config_cfdriver_detach(&tap_cd);
+		return;
+	}
 
 	if_clone_attach(&tap_cloners);
 	sysctl_tap_setup(&tap_sysctl_clog);
@@ -653,7 +653,7 @@ tap_clone_create(struct if_clone *ifc, i
 {
 	if (tap_clone_creator(unit) == NULL) {
 		aprint_error("%s%d: unable to attach an instance\n",
-                    tap_cd.cd_name, unit);
+		    tap_cd.cd_name, unit);
 		return ENXIO;
 	}
 	atomic_inc_uint(&tap_count);

Reply via email to