From 5365869b683e696863eb27545dc4608edff3408a Mon Sep 17 00:00:00 2001 From: Gerald Carter Date: Mon, 7 Jul 2003 05:28:51 +0000 Subject: temporarily disable a sanity check to prevent winbindd from deadlocking on a Samba PDC. Will be re-enabled after winbind_passdb is done. (This used to be commit c4762aa3bc0d5d2dc5161b543b22808a369e0698) --- source3/auth/auth_util.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'source3/auth/auth_util.c') diff --git a/source3/auth/auth_util.c b/source3/auth/auth_util.c index 399a1e9006..ae1be761da 100644 --- a/source3/auth/auth_util.c +++ b/source3/auth/auth_util.c @@ -771,9 +771,11 @@ NTSTATUS make_server_info_sam(auth_serversupplied_info **server_info, (*server_info)->sam_account = sampass; +#if 0 /* JERRY */ + /* disabled until winbindd_passdb is completed to prevent winbindd deadlock on a Samba PDC */ if (!NT_STATUS_IS_OK(nt_status = sid_to_uid(pdb_get_user_sid(sampass), &((*server_info)->uid)))) return nt_status; - +#endif if (!(pwd = getpwuid_alloc(((*server_info)->uid)))) { fstring sid; DEBUG(1, ("User %s in passdb (%s) maps to UID, but getpwuid(%u) fails!\n", -- cgit