From cba7f8b8273e661d3c43652900d93e5a8eab4e5f Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Fri, 21 May 2010 11:25:01 +1000 Subject: s3:dom_sid Global replace of DOM_SID with struct dom_sid MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This matches the structure that new code is being written to, and removes one more of the old-style named structures, and the need to know that is is just an alias for struct dom_sid. Andrew Bartlett Signed-off-by: Günther Deschner --- source3/smbd/service.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/smbd/service.c') diff --git a/source3/smbd/service.c b/source3/smbd/service.c index 8ba32652cd..689f0e2f07 100644 --- a/source3/smbd/service.c +++ b/source3/smbd/service.c @@ -474,12 +474,12 @@ static NTSTATUS share_sanity_checks(int snum, fstring dev) static NTSTATUS find_forced_group(bool force_user, int snum, const char *username, - DOM_SID *pgroup_sid, + struct dom_sid *pgroup_sid, gid_t *pgid) { NTSTATUS result = NT_STATUS_NO_SUCH_GROUP; TALLOC_CTX *frame = talloc_stackframe(); - DOM_SID group_sid; + struct dom_sid group_sid; enum lsa_SidType type; char *groupname; bool user_must_be_member = False; -- cgit