Module Name:    src
Committed By:   yamt
Date:           Tue Apr 21 00:02:38 UTC 2009

Modified Files:
        src/sys/kern: vfs_subr.c

Log Message:
fix an indentation error.  no functional change.


To generate a diff of this commit:
cvs rdiff -u -r1.372 -r1.373 src/sys/kern/vfs_subr.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/kern/vfs_subr.c
diff -u src/sys/kern/vfs_subr.c:1.372 src/sys/kern/vfs_subr.c:1.373
--- src/sys/kern/vfs_subr.c:1.372	Mon Apr 20 18:06:26 2009
+++ src/sys/kern/vfs_subr.c	Tue Apr 21 00:02:37 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: vfs_subr.c,v 1.372 2009/04/20 18:06:26 elad Exp $	*/
+/*	$NetBSD: vfs_subr.c,v 1.373 2009/04/21 00:02:37 yamt Exp $	*/
 
 /*-
  * Copyright (c) 1997, 1998, 2004, 2005, 2007, 2008 The NetBSD Foundation, Inc.
@@ -81,7 +81,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vfs_subr.c,v 1.372 2009/04/20 18:06:26 elad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vfs_subr.c,v 1.373 2009/04/21 00:02:37 yamt Exp $");
 
 #include "opt_ddb.h"
 #include "opt_compat_netbsd.h"
@@ -3312,7 +3312,7 @@
 		/*
 		 * You don't try to change ownership, and...
 		 */
-		 if (new_uid != cur_uid) {
+		if (new_uid != cur_uid) {
 			goto out;
 		}
 

Reply via email to