From 01e9f9788c3cd5a5895a32ec62bd815cbf79414a Mon Sep 17 00:00:00 2001 From: Alexander Bokovoy Date: Fri, 29 Aug 2003 09:24:24 +0000 Subject: Remove cap_set_quota as it is the same as default one (This used to be commit e123f1a8c8ecc0958e640ed204348d0c831f90f5) --- source3/modules/vfs_cap.c | 11 +++-------- 1 file 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) -- cgit