diff options
author | Günther Deschner <gd@samba.org> | 2008-04-24 21:37:42 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-04-24 22:01:52 +0200 |
commit | b77601a4b7c9d0f472eb51dad1d491d54a6dcbdc (patch) | |
tree | c02f6072120d1d661bb333ec5a9e2b7b4d2cec3d /source3/winbindd | |
parent | 012d6782111a2700ee80c79be1a1c07a41dab952 (diff) | |
download | samba-b77601a4b7c9d0f472eb51dad1d491d54a6dcbdc.tar.gz samba-b77601a4b7c9d0f472eb51dad1d491d54a6dcbdc.tar.bz2 samba-b77601a4b7c9d0f472eb51dad1d491d54a6dcbdc.zip |
mailslot: allow to give back struct nbt_ntlogon_packet.
Guenther
(This used to be commit 2b178dcae608ecc05f62593a7a0c2a127b8b7ca2)
Diffstat (limited to 'source3/winbindd')
-rw-r--r-- | source3/winbindd/winbindd_cm.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/winbindd/winbindd_cm.c b/source3/winbindd/winbindd_cm.c index 863df6ec11..d27f3e47f5 100644 --- a/source3/winbindd/winbindd_cm.c +++ b/source3/winbindd/winbindd_cm.c @@ -1098,7 +1098,8 @@ static bool dcip_to_name(TALLOC_CTX *mem_ctx, int i; smb_msleep(100); for (i=0; i<5; i++) { - if (receive_getdc_response(mem_ctx, pss, domain->name, &dc_name)) { + if (receive_getdc_response(mem_ctx, pss, domain->name, + &dc_name, NULL)) { fstrcpy(name, dc_name); namecache_store(name, 0x20, 1, &ip_list); return True; |