From: Stefan Metzmacher Date: Wed, 18 Oct 2017 11:36:59 +0000 (+0200) Subject: s3:cli_netlogon: make sure rpccli_connect_netlogon only returns NT_STATUS_OK on success X-Git-Tag: tevent-0.9.34~164 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=90d57ec08c7af7b678b753b9d17bf7c4ac1d6dd0;p=thirdparty%2Fsamba.git s3:cli_netlogon: make sure rpccli_connect_netlogon only returns NT_STATUS_OK on success Signed-off-by: Stefan Metzmacher Reviewed-by: Andrew Bartlett --- diff --git a/source3/rpc_client/cli_netlogon.c b/source3/rpc_client/cli_netlogon.c index 616523ec371..469d348f6b9 100644 --- a/source3/rpc_client/cli_netlogon.c +++ b/source3/rpc_client/cli_netlogon.c @@ -354,15 +354,16 @@ again: status = cli_rpc_pipe_open_bind_schannel( cli, &ndr_table_netlogon, transport, creds_ctx, &rpccli); - if (!NT_STATUS_IS_OK(status)) { - DBG_DEBUG("cli_rpc_pipe_open_bind_schannel " - "failed: %s\n", nt_errstr(status)); - } if (NT_STATUS_EQUAL(status, NT_STATUS_NETWORK_ACCESS_DENIED)) { DBG_DEBUG("Retrying with serverauthenticate\n"); TALLOC_FREE(lck); goto again; } + if (!NT_STATUS_IS_OK(status)) { + DBG_DEBUG("cli_rpc_pipe_open_bind_schannel " + "failed: %s\n", nt_errstr(status)); + goto fail; + } goto done; } @@ -399,6 +400,7 @@ again: if (!NT_STATUS_IS_OK(status)) { DBG_DEBUG("cli_rpc_pipe_open_noauth_transport " "failed: %s\n", nt_errstr(status)); + goto fail; } goto done; } @@ -434,6 +436,7 @@ again: if (!NT_STATUS_IS_OK(status)) { DBG_DEBUG("cli_rpc_pipe_open_noauth_transport " "failed: %s\n", nt_errstr(status)); + goto fail; } goto done; }