summaryrefslogtreecommitdiff
path: root/source3/modules/vfs_cap.c
diff options
context:
space:
mode:
authorAlexander Bokovoy <ab@samba.org>2003-08-29 09:24:24 +0000
committerAlexander Bokovoy <ab@samba.org>2003-08-29 09:24:24 +0000
commit01e9f9788c3cd5a5895a32ec62bd815cbf79414a (patch)
treecb8d8df41d933450e1440538ae2c70f611c2667b /source3/modules/vfs_cap.c
parent78e75d4f6c6bab84b4f40c5d86398c7c90b8ae36 (diff)
downloadsamba-01e9f9788c3cd5a5895a32ec62bd815cbf79414a.tar.gz
samba-01e9f9788c3cd5a5895a32ec62bd815cbf79414a.tar.bz2
samba-01e9f9788c3cd5a5895a32ec62bd815cbf79414a.zip
Remove cap_set_quota as it is the same as default one
(This used to be commit e123f1a8c8ecc0958e640ed204348d0c831f90f5)
Diffstat (limited to 'source3/modules/vfs_cap.c')
-rw-r--r--source3/modules/vfs_cap.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/source3/modules/vfs_cap.c b/source3/modules/vfs_cap.c
index 6d7964be5f..0526276acb 100644
--- a/source3/modules/vfs_cap.c
+++ b/source3/modules/vfs_cap.c
@@ -38,11 +38,6 @@ static SMB_BIG_UINT cap_disk_free(vfs_handle_struct *handle, connection_struct *
dfree, dsize);
}
-static int cap_set_quota(vfs_handle_struct *handle, connection_struct *conn, enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *dq)
-{
- return SMB_VFS_NEXT_SET_QUOTA(handle, conn, qtype, id, dq);
-}
-
static DIR *cap_opendir(vfs_handle_struct *handle, connection_struct *conn, const char *fname)
{
pstring capname;
@@ -64,9 +59,9 @@ static struct dirent *cap_readdir(vfs_handle_struct *handle, connection_struct *
static int cap_mkdir(vfs_handle_struct *handle, connection_struct *conn, const char *path, mode_t mode)
{
- pstring cappath;
- capencode(cappath, path);
- return SMB_VFS_NEXT_MKDIR(handle, conn, cappath, mode);
+ pstring cappath;
+ capencode(cappath, path);
+ return SMB_VFS_NEXT_MKDIR(handle, conn, cappath, mode);
}
static int cap_rmdir(vfs_handle_struct *handle, connection_struct *conn, const char *path)