diff options
author | Stefan Metzmacher <metze@samba.org> | 2008-07-11 08:19:53 +0000 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2008-07-16 15:12:18 +0200 |
commit | 0c483fe7c7e00c23112ff5513f03a3675025e480 (patch) | |
tree | 208a1deba9c58f3c9bedca8f79c6b87e737a6080 /source3/librpc | |
parent | e096247043c96c90c0da09ecf464619bad7df469 (diff) | |
download | samba-0c483fe7c7e00c23112ff5513f03a3675025e480.tar.gz samba-0c483fe7c7e00c23112ff5513f03a3675025e480.tar.xz samba-0c483fe7c7e00c23112ff5513f03a3675025e480.zip |
drsuapi.idl: correctly handle xpress compressed payload
metze
Signed-off-by: Stefan Metzmacher <metze@samba.org>
(cherry picked from commit d9d19eef4f67da89e7d818d23a2372bee6f86dba)
(This used to be commit 0a24fa0dc3514ef19b84d41055682954a22d3079)
Diffstat (limited to 'source3/librpc')
-rw-r--r-- | source3/librpc/idl/drsuapi.idl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/librpc/idl/drsuapi.idl b/source3/librpc/idl/drsuapi.idl index 02393864c4b..d1ae69a4ce6 100644 --- a/source3/librpc/idl/drsuapi.idl +++ b/source3/librpc/idl/drsuapi.idl @@ -607,16 +607,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 { |