diff options
author | Stefan Metzmacher <metze@samba.org> | 2008-02-14 16:08:50 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-02-28 23:29:35 +0100 |
commit | f610e1fa526e53425a71169b0a6c28905faed615 (patch) | |
tree | 54c2b962f946d221818f710d06254f60d190db93 /source3/librpc/idl | |
parent | a29b042204db84f5200f168896edfe14768080eb (diff) | |
download | samba-f610e1fa526e53425a71169b0a6c28905faed615.tar.gz samba-f610e1fa526e53425a71169b0a6c28905faed615.tar.bz2 samba-f610e1fa526e53425a71169b0a6c28905faed615.zip |
lsa.idl: don't use ascstr_noterm anymore
metze
(This used to be commit 1937d19623029cc4ac0f2c4b336b6460399fa509)
Diffstat (limited to 'source3/librpc/idl')
-rw-r--r-- | source3/librpc/idl/lsa.idl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/librpc/idl/lsa.idl b/source3/librpc/idl/lsa.idl index 68dc0497da..d25d93adc5 100644 --- a/source3/librpc/idl/lsa.idl +++ b/source3/librpc/idl/lsa.idl @@ -33,9 +33,9 @@ import "security.idl"; } lsa_Strings; typedef [public] struct { - [value(strlen_m(string))] uint16 length; - [value(strlen_m(string))] uint16 size; - ascstr_noterm *string; + [value(strlen(string))] uint16 length; + [value(strlen(string))] uint16 size; + [charset(DOS),size_is(size),length_is(length)] uint8 *string; } lsa_AsciiString; /******************/ |