Module Name:    src
Committed By:   enami
Date:           Mon Aug 22 22:12:34 UTC 2011

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

Log Message:
Remove return statement which can't be reached.


To generate a diff of this commit:
cvs rdiff -u -r1.438 -r1.439 src/sys/kern/vfs_syscalls.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_syscalls.c
diff -u src/sys/kern/vfs_syscalls.c:1.438 src/sys/kern/vfs_syscalls.c:1.439
--- src/sys/kern/vfs_syscalls.c:1.438	Mon Aug 22 22:09:07 2011
+++ src/sys/kern/vfs_syscalls.c	Mon Aug 22 22:12:34 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: vfs_syscalls.c,v 1.438 2011/08/22 22:09:07 enami Exp $	*/
+/*	$NetBSD: vfs_syscalls.c,v 1.439 2011/08/22 22:12:34 enami Exp $	*/
 
 /*-
  * Copyright (c) 2008, 2009 The NetBSD Foundation, Inc.
@@ -70,7 +70,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vfs_syscalls.c,v 1.438 2011/08/22 22:09:07 enami Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vfs_syscalls.c,v 1.439 2011/08/22 22:12:34 enami Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_fileassoc.h"
@@ -3092,8 +3092,6 @@
 
 	return do_sys_utimens(l, NULL, SCARG(uap, path), follow,
 	    tptr, UIO_USERSPACE);
-
-	return ENOSYS;
 }
 
 /*

Reply via email to