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

r25311: Patch from Heinrich Mislik <Heinrich.Mislik@univie.ac.at> to fix AIX

quotas.

Heinrich, I trust you on that, I don't even have compiled this :-)

Volker
(This used to be commit a8312a1d7b)
This commit is contained in:
Volker Lendecke 2007-09-24 21:43:54 +00:00 committed by Gerald (Jerry) Carter
parent e6228e2541
commit fb7ee0804c

View File

@ -1236,6 +1236,9 @@ BOOL disk_quotas(const char *path, SMB_BIG_UINT *bsize, SMB_BIG_UINT *dfree, SMB
D.dqb_curblocks = user_quota.bused;
D.dqb_bsoftlimit = user_quota.bsoft;
D.dqb_bhardlimit = user_quota.bhard;
D.dqb_curfiles = user_quota.iused;
D.dqb_fsoftlimit = user_quota.isoft;
D.dqb_fhardlimit = user_quota.ihard;
}
else if(statbuf.f_vfstype == MNT_JFS)
{