summaryrefslogtreecommitdiff
path: root/source3/auth/auth_util.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2017-02-13 20:47:59 +0100
committerJeremy Allison <jra@samba.org>2017-02-27 07:35:10 +0100
commite4058d81b3f99b1305879c4d1f97e2273ef99e66 (patch)
treecb9c237a6ee577ea32fc1a9a4e537747255dfd14 /source3/auth/auth_util.c
parent3c557abc84efaaf00e33dbb661cde2b90ce04be2 (diff)
downloadsamba-e4058d81b3f99b1305879c4d1f97e2273ef99e66.tar.gz
auth3: Fix some whitespace
Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/auth/auth_util.c')
-rw-r--r--source3/auth/auth_util.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/auth/auth_util.c b/source3/auth/auth_util.c
index ae6bfb3de41..3c1ae6441ca 100644
--- a/source3/auth/auth_util.c
+++ b/source3/auth/auth_util.c
@@ -729,19 +729,19 @@ static NTSTATUS get_system_info3(TALLOC_CTX *mem_ctx,
/* The SID set here will be overwirtten anyway, but try and make it SID_NT_SYSTEM anyway */
/* Domain sid is NT_AUTHORITY */
-
+
system_sid = dom_sid_parse_talloc(mem_ctx, SID_NT_SYSTEM);
if (system_sid == NULL) {
return NT_STATUS_NO_MEMORY;
}
-
+
status = dom_sid_split_rid(mem_ctx, system_sid, &info3->base.domain_sid,
&info3->base.rid);
TALLOC_FREE(system_sid);
if (!NT_STATUS_IS_OK(status)) {
return status;
}
-
+
/* Primary gid is the same */
info3->base.primary_gid = info3->base.rid;