1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

Revert "s4:rpc_server/dcesrv_auth.c - Fix a RPC issue in conjunction with Windows 2000"

This reverts commit 1cf5be39e3.

My fix approach isn't such appreciated therefore revert this.
This commit is contained in:
Matthias Dieter Wallnöfer 2010-05-30 14:53:36 +02:00
parent 1cf5be39e3
commit 55df7606e3

View File

@ -116,18 +116,8 @@ NTSTATUS dcesrv_auth_bind_ack(struct dcesrv_call_state *call, struct ncacn_packe
&dce_conn->auth_state.auth_info->credentials);
if (NT_STATUS_IS_OK(status)) {
if ((call->pkt.pfc_flags & DCERPC_PFC_FLAG_SUPPORT_HEADER_SIGN)
&& (talloc_get_type(dce_conn->auth_state.session_info,
struct auth_session_info) != NULL)) {
/* This is a small hack to make some Windows 2000 RPC
* operations work. It should be removed (always call
* "gensec_session_info") when we fully support header
* signing. */
status = NT_STATUS_OK;
} else {
status = gensec_session_info(dce_conn->auth_state.gensec_security,
&dce_conn->auth_state.session_info);
}
status = gensec_session_info(dce_conn->auth_state.gensec_security,
&dce_conn->auth_state.session_info);
if (!NT_STATUS_IS_OK(status)) {
DEBUG(1, ("Failed to establish session_info: %s\n", nt_errstr(status)));
return status;