diff options
author | 2014-10-03 18:53:13 +0000 | |
---|---|---|
committer | 2014-10-03 18:53:13 +0000 | |
commit | 0181dae0f8f81f81bdd2b6ebe2962b1d9c5f8110 (patch) | |
tree | 3ca7a2f5a63449c1fb407c6b2eb74a41967d590f | |
parent | Introduce a thread for zeroing pages without holding the kernel lock. This (diff) | |
download | wireguard-openbsd-0181dae0f8f81f81bdd2b6ebe2962b1d9c5f8110.tar.xz wireguard-openbsd-0181dae0f8f81f81bdd2b6ebe2962b1d9c5f8110.zip |
EOPNOTSUPP for quotactl. from Martin Natano
-rw-r--r-- | sys/miscfs/fuse/fuse_vfsops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/miscfs/fuse/fuse_vfsops.c b/sys/miscfs/fuse/fuse_vfsops.c index 0ecb4002da2..04ca67c6074 100644 --- a/sys/miscfs/fuse/fuse_vfsops.c +++ b/sys/miscfs/fuse/fuse_vfsops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fuse_vfsops.c,v 1.11 2014/07/12 18:43:52 tedu Exp $ */ +/* $OpenBSD: fuse_vfsops.c,v 1.12 2014/10/03 18:53:13 tedu Exp $ */ /* * Copyright (c) 2012-2013 Sylvestre Gallon <ccna.syl@gmail.com> * @@ -189,7 +189,7 @@ fusefs_root(struct mount *mp, struct vnode **vpp) int fusefs_quotactl(struct mount *mp, int cmds, uid_t uid, caddr_t arg, struct proc *p) { - return (0); + return (EOPNOTSUPP); } int fusefs_statfs(struct mount *mp, struct statfs *sbp, struct proc *p) |