diff options
author | Gerald Carter <jerry@samba.org> | 2005-07-27 15:08:11 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:00:17 -0500 |
commit | 1106d1fa6bab66592780429eb1e9162b42a67e8e (patch) | |
tree | acf058072e668d562f03bb9d22841111903a9120 | |
parent | 754b05a3e825bc040312fc1726ceaf6905f7fa2d (diff) | |
download | samba-1106d1fa6bab66592780429eb1e9162b42a67e8e.tar.gz samba-1106d1fa6bab66592780429eb1e9162b42a67e8e.tar.bz2 samba-1106d1fa6bab66592780429eb1e9162b42a67e8e.zip |
r8796: disable schannel on the lsa client pipe for now to deal with Windows 2003 sp1 and Windows 2000 SP4 SR1
(This used to be commit bc1443837c81bebbac7894075a15fe96338f8b0a)
-rw-r--r-- | source3/nsswitch/winbindd_cm.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/source3/nsswitch/winbindd_cm.c b/source3/nsswitch/winbindd_cm.c index 6400b23f9f..d4022a8455 100644 --- a/source3/nsswitch/winbindd_cm.c +++ b/source3/nsswitch/winbindd_cm.c @@ -1038,6 +1038,12 @@ NTSTATUS cm_connect_lsa(struct winbindd_domain *domain, TALLOC_CTX *mem_ctx, conn = &domain->conn; if (conn->lsa_pipe == NULL) { +#if 0 + /* disabling schannl on the LSA pipe for now since + both Win2K-SP4 SR1 & Win2K3-SP1 fail the open_policy() + call (return codes 0xc0020042 and 0xc0020041 respectively). + We really need to fix this soon. --jerry */ + unsigned char *session_key; if (cm_get_schannel_key(domain, mem_ctx, &session_key)) @@ -1046,6 +1052,7 @@ NTSTATUS cm_connect_lsa(struct winbindd_domain *domain, TALLOC_CTX *mem_ctx, session_key, domain->name); else +#endif conn->lsa_pipe = cli_rpc_open_noauth(conn->cli, PI_LSARPC); |