diff options
author | Stefan Metzmacher <metze@samba.org> | 2008-07-11 08:19:53 +0000 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2008-07-16 12:12:29 +0200 |
commit | 80fe14a211e6b8f5439474cc40f9ff6e34bb8b9a (patch) | |
tree | 0e415eb1f0df071359e16a32325e09fe837e7bb0 /source4 | |
parent | c8a1254db802e66ac530372f85716f7865ec3727 (diff) | |
download | samba-80fe14a211e6b8f5439474cc40f9ff6e34bb8b9a.tar.gz samba-80fe14a211e6b8f5439474cc40f9ff6e34bb8b9a.tar.bz2 samba-80fe14a211e6b8f5439474cc40f9ff6e34bb8b9a.zip |
drsuapi.idl: correctly handle xpress compressed payload
metze
Signed-off-by: Stefan Metzmacher <metze@samba.org>
(This used to be commit d9d19eef4f67da89e7d818d23a2372bee6f86dba)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/librpc/idl/drsuapi.idl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source4/librpc/idl/drsuapi.idl b/source4/librpc/idl/drsuapi.idl index 6701d22a63..f61905b4b6 100644 --- a/source4/librpc/idl/drsuapi.idl +++ b/source4/librpc/idl/drsuapi.idl @@ -595,16 +595,16 @@ interface drsuapi uint32 decompressed_length; uint32 compressed_length; [subcontext(4),subcontext_size(compressed_length), - compression(NDR_COMPRESSION_XPRESS,compressed_length,decompressed_length), - flag(NDR_REMAINING)] DATA_BLOB *decompressed; + compression(NDR_COMPRESSION_XPRESS,compressed_length,decompressed_length)] + drsuapi_DsGetNCChangesCtr1 *ctr1; } drsuapi_DsGetNCChangesXPRESSCtr1; typedef struct { uint32 decompressed_length; uint32 compressed_length; [subcontext(4),subcontext_size(compressed_length), - compression(NDR_COMPRESSION_XPRESS,compressed_length,decompressed_length), - flag(NDR_REMAINING)] DATA_BLOB *decompressed; + compression(NDR_COMPRESSION_XPRESS,compressed_length,decompressed_length)] + drsuapi_DsGetNCChangesCtr6 *ctr6; } drsuapi_DsGetNCChangesXPRESSCtr6; typedef [enum16bit] enum { |