Module Name:    src
Committed By:   mrg
Date:           Thu Dec  1 05:07:27 UTC 2016

Modified Files:
        src/sys/compat/netbsd32: netbsd32_fs.c

Log Message:
s/netbds32_copyout_statvfs/netbsd32_copyout_statvfs/


To generate a diff of this commit:
cvs rdiff -u -r1.78 -r1.79 src/sys/compat/netbsd32/netbsd32_fs.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/compat/netbsd32/netbsd32_fs.c
diff -u src/sys/compat/netbsd32/netbsd32_fs.c:1.78 src/sys/compat/netbsd32/netbsd32_fs.c:1.79
--- src/sys/compat/netbsd32/netbsd32_fs.c:1.78	Fri Oct 21 07:45:16 2016
+++ src/sys/compat/netbsd32/netbsd32_fs.c	Thu Dec  1 05:07:27 2016
@@ -1,4 +1,4 @@
-/*	$NetBSD: netbsd32_fs.c,v 1.78 2016/10/21 07:45:16 mrg Exp $	*/
+/*	$NetBSD: netbsd32_fs.c,v 1.79 2016/12/01 05:07:27 mrg Exp $	*/
 
 /*
  * Copyright (c) 1998, 2001 Matthew R. Green
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: netbsd32_fs.c,v 1.78 2016/10/21 07:45:16 mrg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: netbsd32_fs.c,v 1.79 2016/12/01 05:07:27 mrg Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -385,7 +385,7 @@ netbsd32___utimes50(struct lwp *l, const
 }
 
 static int
-netbds32_copyout_statvfs(const void *kp, void *up, size_t len)
+netbsd32_copyout_statvfs(const void *kp, void *up, size_t len)
 {
 	struct netbsd32_statvfs *sbuf_32;
 	int error;
@@ -412,7 +412,7 @@ netbsd32_statvfs1(struct lwp *l, const s
 	sb = STATVFSBUF_GET();
 	error = do_sys_pstatvfs(l, SCARG_P32(uap, path), SCARG(uap, flags), sb);
 	if (error == 0)
-		error = netbds32_copyout_statvfs(sb, SCARG_P32(uap, buf), 0);
+		error = netbsd32_copyout_statvfs(sb, SCARG_P32(uap, buf), 0);
 	STATVFSBUF_PUT(sb);
 	return error;
 }
@@ -431,7 +431,7 @@ netbsd32_fstatvfs1(struct lwp *l, const 
 	sb = STATVFSBUF_GET();
 	error = do_sys_fstatvfs(l, SCARG(uap, fd), SCARG(uap, flags), sb);
 	if (error == 0)
-		error = netbds32_copyout_statvfs(sb, SCARG_P32(uap, buf), 0);
+		error = netbsd32_copyout_statvfs(sb, SCARG_P32(uap, buf), 0);
 	STATVFSBUF_PUT(sb);
 	return error;
 }
@@ -446,7 +446,7 @@ netbsd32_getvfsstat(struct lwp *l, const
 	} */
 
 	return do_sys_getvfsstat(l, SCARG_P32(uap, buf), SCARG(uap, bufsize),
-	    SCARG(uap, flags), netbds32_copyout_statvfs,
+	    SCARG(uap, flags), netbsd32_copyout_statvfs,
 	    sizeof (struct netbsd32_statvfs), retval);
 }
 
@@ -467,7 +467,7 @@ netbsd32___fhstatvfs140(struct lwp *l, c
 	    SCARG(uap, flags));
 
 	if (error == 0)
-		error = netbds32_copyout_statvfs(sb, SCARG_P32(uap, buf), 0);
+		error = netbsd32_copyout_statvfs(sb, SCARG_P32(uap, buf), 0);
 	STATVFSBUF_PUT(sb);
 
 	return error;

Reply via email to