diff options
author | Stefan Metzmacher <metze@samba.org> | 2019-08-15 13:22:43 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2019-09-20 01:14:43 +0000 |
commit | 0fea2707fb05897eec3c26bd4814669832142382 (patch) | |
tree | bde9cd776185a60506c645153fc32890cf9cfac9 /librpc/idl | |
parent | c87cf54684be606aa8f9b420f5c4f710de2a363a (diff) | |
download | samba-0fea2707fb05897eec3c26bd4814669832142382.tar.gz |
netlogon.idl: fix the marshalling of netr_OsVersion for NDR64
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Guenther Deschner <gd@samba.org>
Diffstat (limited to 'librpc/idl')
-rw-r--r-- | librpc/idl/netlogon.idl | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/librpc/idl/netlogon.idl b/librpc/idl/netlogon.idl index 0f9bda8af81..e6fda421ea5 100644 --- a/librpc/idl/netlogon.idl +++ b/librpc/idl/netlogon.idl @@ -1347,9 +1347,10 @@ interface netlogon actually encodes this structure as a UNICODE_STRING - see MS-NRPC section 2.2.1.3.9 */ /* 142 * 2 = 284 (length of structure "netr_OsVersionInfoEx") */ - [value(142)] uint32 length; - [value(0)] uint32 dummy; - [value(142)] uint32 size; + [value(142)] uint3264 length; + [value(0)] uint3264 dummy; + [value(142)] uint3264 size; + [subcontext(0),subcontext_size(size*2)] netr_OsVersionInfoEx os; } netr_OsVersion; |