diff options
author | Jeremy Allison <jra@samba.org> | 2006-08-31 04:14:08 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:39:01 -0500 |
commit | 2fcd113f5507f643fcf80d5a9770ce72aa121ba8 (patch) | |
tree | 29bd85c741a4c43b3fdfdf8d5d6e8481bf044b67 /source3/nsswitch | |
parent | cceb492250ce7e273cdc48c030048c0879a7265a (diff) | |
download | samba-2fcd113f5507f643fcf80d5a9770ce72aa121ba8.tar.gz samba-2fcd113f5507f643fcf80d5a9770ce72aa121ba8.tar.bz2 samba-2fcd113f5507f643fcf80d5a9770ce72aa121ba8.zip |
r17945: Store the server and client sitenames in the ADS
struct so we can see when they match - only create
the ugly krb5 hack when they do.
Jeremy.
(This used to be commit 9be4ecf24b6b5dacf4c2891bddb072fa7543753f)
Diffstat (limited to 'source3/nsswitch')
-rw-r--r-- | source3/nsswitch/winbindd_cm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nsswitch/winbindd_cm.c b/source3/nsswitch/winbindd_cm.c index a09faaed94..2288f29888 100644 --- a/source3/nsswitch/winbindd_cm.c +++ b/source3/nsswitch/winbindd_cm.c @@ -607,7 +607,7 @@ static BOOL dcip_to_name( const char *domainname, const char *realm, namecache_store(name, 0x20, 1, &ip_list); #ifdef HAVE_KRB5 - if ((ads->config.flags & ADS_KDC) && sitename) { + if ((ads->config.flags & ADS_KDC) && ads_sitename_match(ads)) { /* We're going to use this KDC for this realm/domain. If we are using sites, then force the krb5 libs to use this KDC. */ |