diff options
author | Gerald Carter <jerry@samba.org> | 2003-07-07 05:28:51 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2003-07-07 05:28:51 +0000 |
commit | 5365869b683e696863eb27545dc4608edff3408a (patch) | |
tree | 6e0c896e737ae1df98bf0f20e24e46c134d43ef3 | |
parent | 0b18acb841f6a372b3aa285d4734875e5e35fe3b (diff) | |
download | samba-5365869b683e696863eb27545dc4608edff3408a.tar.gz samba-5365869b683e696863eb27545dc4608edff3408a.tar.bz2 samba-5365869b683e696863eb27545dc4608edff3408a.zip |
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)
-rw-r--r-- | source3/auth/auth_util.c | 4 |
1 files changed, 3 insertions, 1 deletions
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", |