Module Name: src Committed By: dholland Date: Mon Nov 5 17:16:18 UTC 2012
Modified Files: src/sys/sys: mount.h Log Message: Fix the prototype of vfs_quotactl() implementations in VFS_PROTOS(), since it's wrong there. This slipped by because the only implementation is in ufs, which isn't under a VFS_PROTOS declaration. To generate a diff of this commit: cvs rdiff -u -r1.207 -r1.208 src/sys/sys/mount.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/sys/mount.h diff -u src/sys/sys/mount.h:1.207 src/sys/sys/mount.h:1.208 --- src/sys/sys/mount.h:1.207 Wed Feb 1 05:34:42 2012 +++ src/sys/sys/mount.h Mon Nov 5 17:16:18 2012 @@ -1,4 +1,4 @@ -/* $NetBSD: mount.h,v 1.207 2012/02/01 05:34:42 dholland Exp $ */ +/* $NetBSD: mount.h,v 1.208 2012/11/05 17:16:18 dholland Exp $ */ /* * Copyright (c) 1989, 1991, 1993 @@ -277,7 +277,7 @@ int fsname##_mount(struct mount *, const int fsname##_start(struct mount *, int); \ int fsname##_unmount(struct mount *, int); \ int fsname##_root(struct mount *, struct vnode **); \ -int fsname##_quotactl(struct mount *, int, struct quotactl_args *); \ +int fsname##_quotactl(struct mount *, struct quotactl_args *); \ int fsname##_statvfs(struct mount *, struct statvfs *); \ int fsname##_sync(struct mount *, int, struct kauth_cred *); \ int fsname##_vget(struct mount *, ino_t, struct vnode **); \