1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

Fix a wrong define check.

(This used to be commit f1c4f65ae0)
This commit is contained in:
Alexander Bokovoy 2003-05-12 03:13:41 +00:00
parent eeac7cc99d
commit fe3b05eec4

View File

@ -20,8 +20,6 @@
#include "includes.h"
#ifdef WITH_QUOTAS
static SMB_BIG_UINT limit_nt2unix(SMB_BIG_UINT in, SMB_BIG_UINT bsize)
{
SMB_BIG_UINT ret = (SMB_BIG_UINT)0;
@ -123,7 +121,11 @@ int vfs_set_ntquota(files_struct *fsp, enum SMB_QUOTA_TYPE qtype, DOM_SID *psid,
id.uid = -1;
#if defined(QUOTABLOCK_SIZE)
D.bsize = (SMB_BIG_UINT)QUOTABLOCK_SIZE;
#else
D.bsize = (SMB_BIG_UINT)1024;
#endif
D.softlimit = limit_nt2unix(qt->softlim,D.bsize);
D.hardlimit = limit_nt2unix(qt->hardlim,D.bsize);
D.qflags = qt->qflags;
@ -260,4 +262,3 @@ void destroy_quota_handle(void **pqt_handle)
return;
}
#endif /* WITH_QUOTAS */