diff options
author | Jeremy Allison <jra@samba.org> | 2000-12-19 23:57:48 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2000-12-19 23:57:48 +0000 |
commit | 7bf9d8ce4bb7e96a4c72f674e21d015b1ef1481e (patch) | |
tree | 7f143422e11c062a31e011625abb8a0d579d637f /source3/include | |
parent | 0f95385d2887a50abbfed7ffe5631f13287bd4b4 (diff) | |
download | samba-7bf9d8ce4bb7e96a4c72f674e21d015b1ef1481e.tar.gz samba-7bf9d8ce4bb7e96a4c72f674e21d015b1ef1481e.tar.xz samba-7bf9d8ce4bb7e96a4c72f674e21d015b1ef1481e.zip |
Fixed bug found by Gerald. If a Samba server joins a domain and is set
to search for a DC to authenticate to using the "*" syntax than ensure
that for the first hour after the password change is searches for the
PDC using the 1B name not the 1C name as domain replication may not
have occured.
Jeremy.
(This used to be commit c25533de9918ed9b0c79fd039e11d1b79f513db0)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index d54f26dd0b5..168600a59f5 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -856,7 +856,7 @@ BOOL resolve_srv_name(const char* srv_name, fstring dest_host, struct in_addr *ip); BOOL find_master_ip(char *group, struct in_addr *master_ip); BOOL lookup_pdc_name(const char *srcname, const char *domain, struct in_addr *pdc_ip, char *ret_name); -BOOL get_dc_list(char *group, struct in_addr **ip_list, int *count); +BOOL get_dc_list(BOOL pdc_only, char *group, struct in_addr **ip_list, int *count); /*The following definitions come from libsmb/nmblib.c */ |