diff options
author | Stefan Metzmacher <metze@samba.org> | 2008-02-14 15:01:23 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2008-02-15 08:52:51 +0100 |
commit | 8410878e2a6c270a50ee1cfa73c9d115a0666dd8 (patch) | |
tree | 839de6955ed47f28bc7e2e4971cf76087aa858a4 | |
parent | a37ddb8ae0fe52b4adea3c35bd4e6e85b909d83f (diff) | |
download | samba-8410878e2a6c270a50ee1cfa73c9d115a0666dd8.tar.gz samba-8410878e2a6c270a50ee1cfa73c9d115a0666dd8.tar.bz2 samba-8410878e2a6c270a50ee1cfa73c9d115a0666dd8.zip |
dcerpc.idl: use charset() instead of ascstr3
metze
(This used to be commit 47447f60bc8e5dd1021752e9b011f22762e45eed)
-rw-r--r-- | source4/librpc/idl/dcerpc.idl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/librpc/idl/dcerpc.idl b/source4/librpc/idl/dcerpc.idl index fcb0be4639..b2c67542f5 100644 --- a/source4/librpc/idl/dcerpc.idl +++ b/source4/librpc/idl/dcerpc.idl @@ -64,7 +64,8 @@ interface dcerpc uint16 max_xmit_frag; uint16 max_recv_frag; uint32 assoc_group_id; - ascstr3 secondary_address; + [value(strlen(secondary_address)+1)] uint16 secondary_address_size; + [charset(DOS)] uint8 secondary_address[secondary_address_size]; [flag(NDR_ALIGN4)] DATA_BLOB _pad1; uint8 num_results; dcerpc_ack_ctx ctx_list[num_results]; |