]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
auth3: Fix some whitespace
authorVolker Lendecke <vl@samba.org>
Mon, 13 Feb 2017 19:47:59 +0000 (20:47 +0100)
committerJeremy Allison <jra@samba.org>
Mon, 27 Feb 2017 06:35:10 +0000 (07:35 +0100)
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
source3/auth/auth_util.c

index ae6bfb3de41ebca219d39457aa17f9294c4e9157..3c1ae6441ca28ae07a8850cfaf75fe7fff5c5d59 100644 (file)
@@ -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;