diff options
author | Günther Deschner <gd@samba.org> | 2006-05-04 17:28:05 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:16:43 -0500 |
commit | 52e778e6f85c5affbcc40e5ce629792e6f16b553 (patch) | |
tree | cfdf0189bf23ff251c97557634cbf4620658c46e /source3/include | |
parent | a0ff50efa79f08f538f0c341744572929ac5a298 (diff) | |
download | samba-52e778e6f85c5affbcc40e5ce629792e6f16b553.tar.gz samba-52e778e6f85c5affbcc40e5ce629792e6f16b553.tar.bz2 samba-52e778e6f85c5affbcc40e5ce629792e6f16b553.zip |
r15438: Fix samrQueryDomainInfo level 5 where we returned our netbios
name eversince instead of the domain name when we are a DC.
Yes, there are applications relying on this call to be correct.
Guenther
(This used to be commit 26dd22c9af8caf3db236984e4683ba210376ca59)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/rpc_samr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/include/rpc_samr.h b/source3/include/rpc_samr.h index 37a0ed9a3f..c33d409997 100644 --- a/source3/include/rpc_samr.h +++ b/source3/include/rpc_samr.h @@ -572,8 +572,8 @@ typedef struct sam_unknown_info_12_inf typedef struct sam_unknown_info_5_inf { - UNIHDR hdr_server; /* server name unicode header */ - UNISTR2 uni_server; /* server name unicode string */ + UNIHDR hdr_domain; /* domain name unicode header */ + UNISTR2 uni_domain; /* domain name unicode string */ } SAM_UNK_INFO_5; |