]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
s4:torture: Remove trailing spaces in winbind.c
authorAndreas Schneider <asn@samba.org>
Thu, 17 Oct 2024 13:11:26 +0000 (15:11 +0200)
committerMartin Schwenke <martins@samba.org>
Thu, 24 Oct 2024 10:54:37 +0000 (10:54 +0000)
Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Martin Schwenke <martin@meltin.net>
source4/torture/winbind/winbind.c

index 4acfd384112e623789e9505b06617237607e930d..81ac15153d70675c5f788f72bc35089404f15d16 100644 (file)
@@ -62,7 +62,7 @@ static NTSTATUS test_generate_session_info_pac(struct auth4_context *auth_ctx,
        tmp_ctx = talloc_named(mem_ctx, 0, "gensec_gssapi_session_info context");
        NT_STATUS_HAVE_NO_MEMORY(tmp_ctx);
 
-       auth_ctx->private_data = pac_data = talloc_zero(auth_ctx, struct pac_data); 
+       auth_ctx->private_data = pac_data = talloc_zero(auth_ctx, struct pac_data);
 
        pac_data->pac_blob = *pac_blob;
 
@@ -206,7 +206,7 @@ static bool torture_winbind_pac(struct torture_context *tctx,
        struct gensec_security *gensec_server_context;
        struct cli_credentials *machine_credentials;
 
-       DATA_BLOB client_to_server, server_to_client;   
+       DATA_BLOB client_to_server, server_to_client;
 
        struct auth4_context *auth_context;
        struct auth_session_info *session_info;
@@ -261,7 +261,7 @@ static bool torture_winbind_pac(struct torture_context *tctx,
        }
 
        server_to_client = data_blob(NULL, 0);
-       
+
        do {
                /* Do a client-server update dance */
                status = gensec_update(gensec_client_context, tmp_ctx, server_to_client, &client_to_server);
@@ -296,17 +296,17 @@ static bool torture_winbind_pac(struct torture_context *tctx,
 static bool torture_winbind_pac_gssapi(struct torture_context *tctx)
 {
        return torture_winbind_pac(tctx, "GSSAPI", NULL);
-}      
+}
 
 static bool torture_winbind_pac_gss_spnego(struct torture_context *tctx)
 {
        return torture_winbind_pac(tctx, "GSS-SPNEGO", NULL);
-}      
+}
 
 static bool torture_winbind_pac_krb5(struct torture_context *tctx)
 {
        return torture_winbind_pac(tctx, NULL, "krb5");
-}      
+}
 
 NTSTATUS torture_winbind_init(TALLOC_CTX *ctx)
 {