From c46c6e23ba7b962e20f49eeff3c3842ce905ec4a Mon Sep 17 00:00:00 2001 From: Richard Sharpe Date: Wed, 6 Apr 2005 23:22:52 +0000 Subject: r6229: Back out these changes ... (This used to be commit 321fbae51267153102e47845736f2c3a5abfe0be) --- source4/librpc/rpc/dcerpc_schannel.c | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) (limited to 'source4/librpc/rpc/dcerpc_schannel.c') diff --git a/source4/librpc/rpc/dcerpc_schannel.c b/source4/librpc/rpc/dcerpc_schannel.c index a98ed50b9a..3ae2624ff9 100644 --- a/source4/librpc/rpc/dcerpc_schannel.c +++ b/source4/librpc/rpc/dcerpc_schannel.c @@ -162,21 +162,7 @@ NTSTATUS dcerpc_bind_auth_schannel(TALLOC_CTX *tmp_ctx, DEBUG(1, ("Failed to setup credentials for account %s: %s\n", cli_credentials_get_username(credentials), nt_errstr(status))); - /* - * If we get back NT_STATUS_ACCESS_DENIED and we asked for - * DCERPC_SCHANNEL_128, then try again without - */ - if (NT_STATUS_EQUAL(status, NT_STATUS_ACCESS_DENIED) && - p->conn->flags & DCERPC_SCHANNEL_128) { - DEBUG(1, ("Retrying to setup credentials without DCERPC_SCHANNEL_128\n")); - p->conn->flags &= ~DCERPC_SCHANNEL_128; - status = dcerpc_schannel_key(tmp_ctx, - p, credentials, - chan_type); - } - if (!NT_STATUS_IS_OK(status)) { - return status; - } + return status; } return dcerpc_bind_auth_password(p, uuid, version, -- cgit