From 485a6354e5c41cc16bfa3b93e05c72e4685720ee Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Sat, 28 Jun 2008 18:04:35 +1000 Subject: Fix the wbinfo test on the LDAP backend. The problem was that we would do a blocking wait for the LDAP server, which was also blocking on us returning (because we were in single process mode). The LDAP connection being made here is useless anyway, and will need to be an async ldb_connect() before anybody reintroucues it (nobody in their right mind would program a winbindd backend on pure LDAP, when the ldb abstraction is available). Andrew Bartlett (This used to be commit 23280b2e6ed5afb968bf0b8c40febb085eed38a1) --- source4/winbind/wb_server.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'source4/winbind/wb_server.h') diff --git a/source4/winbind/wb_server.h b/source4/winbind/wb_server.h index ce972932f5..5a7ba7b401 100644 --- a/source4/winbind/wb_server.h +++ b/source4/winbind/wb_server.h @@ -69,8 +69,6 @@ struct wbsrv_domain { struct dcerpc_binding *samr_binding; - struct ldap_connection *ldap_conn; - struct dcerpc_pipe *netlogon_pipe; struct dcerpc_binding *netlogon_binding; }; -- cgit