diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-06-10 03:50:38 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-06-10 03:50:38 +0000 |
commit | 057ec70b53c8cf97066fcc6f0673a28d9ccc15ab (patch) | |
tree | 435f2ec046ebe756271722361be0003d6a86b4e5 /source3/nsswitch/winbindd_util.c | |
parent | 1d008cd2cb2bf1821bca72328ef33aa76318e282 (diff) | |
download | samba-057ec70b53c8cf97066fcc6f0673a28d9ccc15ab.tar.gz samba-057ec70b53c8cf97066fcc6f0673a28d9ccc15ab.tar.xz samba-057ec70b53c8cf97066fcc6f0673a28d9ccc15ab.zip |
- fixed the bug that forced us not to use the winbindd cache when we
have a primary ADS domain and a secondary (trusted) NT4 domain. This
caused winbindd to be *really* slow for that setup.
- fixed winbindd_getgrgid(), which was calling uid_to_sid instead of
gid_to_sid(). When you make changes to winbind *PLEASE* test using
nsstest.
(This used to be commit cdd9b60a078b63e22f543d4c8d0956ff536f4d89)
Diffstat (limited to 'source3/nsswitch/winbindd_util.c')
-rw-r--r-- | source3/nsswitch/winbindd_util.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source3/nsswitch/winbindd_util.c b/source3/nsswitch/winbindd_util.c index 84f5d195686..c92241b2560 100644 --- a/source3/nsswitch/winbindd_util.c +++ b/source3/nsswitch/winbindd_util.c @@ -118,6 +118,7 @@ static struct winbindd_domain *add_trusted_domain(const char *domain_name, const } domain->methods = methods; + domain->backend = NULL; domain->sequence_number = DOM_SEQUENCE_NONE; domain->last_seq_check = 0; if (sid) { @@ -379,12 +380,12 @@ BOOL winbindd_param_init(void) /* Parse winbind uid and winbind_gid parameters */ if (!lp_idmap_uid(&server_state.uid_low, &server_state.uid_high)) { - DEBUG(0, ("winbind uid range missing or invalid\n")); + DEBUG(0, ("idmap uid range missing or invalid\n")); return False; } if (!lp_idmap_gid(&server_state.gid_low, &server_state.gid_high)) { - DEBUG(0, ("winbind gid range missing or invalid\n")); + DEBUG(0, ("idmap gid range missing or invalid\n")); return False; } |