1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-02 09:47:23 +03:00

r22149: BUG 4500: patch from Jorge Santos <jorge_a_santos@hotmail.com>

to fix compile bug ni quotas.c (typo calling unbecome_root()).
(This used to be commit 22d550d62b5834e2c5155550756d3462a1bd6561)
This commit is contained in:
Gerald Carter 2007-04-10 15:41:23 +00:00 committed by Gerald (Jerry) Carter
parent d6d35eab6e
commit 1790c67780

View File

@ -662,7 +662,7 @@ BOOL disk_quotas(const char *path, SMB_BIG_UINT *bsize, SMB_BIG_UINT *dfree, SMB
BOOL retval;
DEBUG(5,("disk_quotas: looking for mountpath (NFS) \"%s\"\n", mnt.mnt_special));
retval = nfs_quotas(mnt.mnt_special, euser_id, bsize, dfree, dsize);
unbecome();
unbecome_root();
return retval;
}