Commit 5f9af6df authored by Volker Lendecke's avatar Volker Lendecke Committed by Gerald (Jerry) Carter
Browse files

r1338: A netlogon schannel failure is a normal event with XP clients. They cache the

netlogon session key and try to reconnect using that key. This fails with a
restarted smbd, we expect another serverauth2. XP falls back immediately.

Make the corresponding messages a debug level 3, not 0 to not flood log.smbd.

Volker
(This used to be commit 4fda68a62fec6c1e95d5176bc5d06bd49da6f358)
parent 7b4151e1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1397,7 +1397,7 @@ BOOL api_pipe_netsec_process(pipes_struct *p, prs_struct *rpc_in)
			   SENDER_IS_INITIATOR,
			   &netsec_chk,
			   prs_data_p(rpc_in)+old_offset, data_len)) {
		DEBUG(0,("failed to decode PDU\n"));
		DEBUG(3,("failed to decode PDU\n"));
		return False;
	}

+1 −1
Original line number Diff line number Diff line
@@ -602,7 +602,7 @@ static BOOL process_request_pdu(pipes_struct *p, prs_struct *rpc_in_p)
	}

	if (p->netsec_auth_validated && !api_pipe_netsec_process(p, rpc_in_p)) {
		DEBUG(0,("process_request_pdu: failed to do schannel processing.\n"));
		DEBUG(3,("process_request_pdu: failed to do schannel processing.\n"));
		set_incoming_fault(p);
		return False;
	}