summaryrefslogtreecommitdiff
path: root/sys/miscfs
diff options
context:
space:
mode:
authorTed Unangst <tedu@cvs.openbsd.org>2014-10-03 18:53:14 +0000
committerTed Unangst <tedu@cvs.openbsd.org>2014-10-03 18:53:14 +0000
commit5d51d7ba1b7a0987b36ac0a55b4c11ea8e3a3c6f (patch)
treed63972af61ed9d58e3c357694c7b588d0a28b390 /sys/miscfs
parent2ac906315dd2935ea86fb46830b78578fe07851b (diff)
EOPNOTSUPP for quotactl. from Martin Natano
Diffstat (limited to 'sys/miscfs')
-rw-r--r--sys/miscfs/fuse/fuse_vfsops.c4
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)