diff options
author | Stefan Metzmacher <metze@samba.org> | 2004-01-15 08:49:30 +0000 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2004-01-15 08:49:30 +0000 |
commit | 9343c89cb4a1b9f47c38d00b12f3e9058d15b18d (patch) | |
tree | 461dc0cac32b943f138f057c0d992034db18000c /source3/smbd/ntquotas.c | |
parent | 919c261a490460a2e2189903139c0d4ad36a7aab (diff) | |
download | samba-9343c89cb4a1b9f47c38d00b12f3e9058d15b18d.tar.gz |
* Fix XFS quotas: XFS_USER_QUOTA -> USRQUOTA
XFS_GROUP_QUOTA -> GRPQUOTA
* Fix disk_free calculation with group quotas.
* Add debug class 'quota' and a lot of DEBUG()'s
to the quota code.
metze
(This used to be commit e9e5e2036f13ff847aa3ef52e8be657bef7d5774)
Diffstat (limited to 'source3/smbd/ntquotas.c')
-rw-r--r-- | source3/smbd/ntquotas.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/smbd/ntquotas.c b/source3/smbd/ntquotas.c index 88d7c4e1643..555f32d773f 100644 --- a/source3/smbd/ntquotas.c +++ b/source3/smbd/ntquotas.c @@ -20,6 +20,9 @@ #include "includes.h" +#undef DBGC_CLASS +#define DBGC_CLASS DBGC_QUOTA + static SMB_BIG_UINT limit_nt2unix(SMB_BIG_UINT in, SMB_BIG_UINT bsize) { SMB_BIG_UINT ret = (SMB_BIG_UINT)0; |