diff options
author | Andrew Tridgell <tridge@samba.org> | 2009-09-24 07:02:47 -0700 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2009-09-24 10:36:13 -0700 |
commit | f8a09e8fb32e23deb59a62f1e110724bb39b0508 (patch) | |
tree | ffc43cd337156bcf991d84eaa5fae7958c257c47 /librpc | |
parent | baf93360a869a55617e1b29f2d954320967f8f71 (diff) | |
download | samba-f8a09e8fb32e23deb59a62f1e110724bb39b0508.tar.gz samba-f8a09e8fb32e23deb59a62f1e110724bb39b0508.tar.bz2 samba-f8a09e8fb32e23deb59a62f1e110724bb39b0508.zip |
s4-drs: fixed the size of DN binary blobs on the wire
Comparison with w2k8 traces shows the size field of
drsuapi_DsReplicaObjectIdentifier3Binary is taken from
drsuapi_DsReplicaObjectIdentifier3
Thanks to metze for spotting this
Diffstat (limited to 'librpc')
-rw-r--r-- | librpc/idl/drsuapi.idl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/librpc/idl/drsuapi.idl b/librpc/idl/drsuapi.idl index 27d3089bf7..9d2d153418 100644 --- a/librpc/idl/drsuapi.idl +++ b/librpc/idl/drsuapi.idl @@ -553,7 +553,7 @@ interface drsuapi } drsuapi_DsReplicaObjectIdentifier3; typedef [public,gensize] struct { - [value(ndr_size_drsuapi_DsReplicaObjectIdentifier3Binary(r, ndr->iconv_convenience, ndr->flags))] uint32 __ndr_size; + [value(ndr_size_drsuapi_DsReplicaObjectIdentifier3(r, ndr->iconv_convenience, ndr->flags))] uint32 __ndr_size; [value(ndr_size_dom_sid28(&sid,ndr->flags))] uint32 __ndr_size_sid; GUID guid; dom_sid28 sid; |