From 821bd95156e8cc6d843aecb0a27d4a08761b7dac Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Thu, 28 Jun 2012 11:59:51 -0700 Subject: Replace all uses of setXX[ug]id() and setgroups with samba_setXX[ug]id() calls. Will allow thread-specific credentials to be added by modifying the central definitions. Deliberately left the setXX[ug]id() call in popt as this is not used in Samba. --- source3/smbd/sec_ctx.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source3/smbd/sec_ctx.c') diff --git a/source3/smbd/sec_ctx.c b/source3/smbd/sec_ctx.c index d83dbd0cb6..d73dcf422e 100644 --- a/source3/smbd/sec_ctx.c +++ b/source3/smbd/sec_ctx.c @@ -24,6 +24,7 @@ #include "libcli/security/security_token.h" #include "auth.h" #include "smbprofile.h" +#include "../lib/util/setid.h" extern struct current_user current_user; @@ -151,7 +152,7 @@ static int get_current_groups(gid_t gid, uint32_t *p_ngroups, gid_t **p_groups) returned from getgroups() (tridge) */ save_re_gid(); set_effective_gid(gid); - setgid(gid); + samba_setgid(gid); ngroups = sys_getgroups(0,&grp); if (ngroups <= 0) { -- cgit