diff options
author | Matthias Dieter Wallnöfer <mdw@samba.org> | 2010-07-04 22:34:43 +0200 |
---|---|---|
committer | Matthias Dieter Wallnöfer <mdw@samba.org> | 2010-07-05 15:35:54 +0200 |
commit | 915ddf0dc74d2b36d5da2c1bf377a289291c13b8 (patch) | |
tree | 141fa25d7bd40c2a9c26d2e39ae2dea2518b2984 /librpc/idl | |
parent | 3278554b3e8864bc412926b67faf8a924a4416c7 (diff) | |
download | samba-915ddf0dc74d2b36d5da2c1bf377a289291c13b8.tar.gz samba-915ddf0dc74d2b36d5da2c1bf377a289291c13b8.tar.bz2 samba-915ddf0dc74d2b36d5da2c1bf377a289291c13b8.zip |
samr.idl:UserInfo structures - fix some names according to MS-SAMR documentation
See MS-SAMR section "FULL IDL"
Diffstat (limited to 'librpc/idl')
-rw-r--r-- | librpc/idl/samr.idl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/librpc/idl/samr.idl b/librpc/idl/samr.idl index da7b1aa82e..d977ddd427 100644 --- a/librpc/idl/samr.idl +++ b/librpc/idl/samr.idl @@ -806,7 +806,7 @@ import "misc.idl", "lsa.idl", "security.idl"; typedef struct { lsa_String comment; - lsa_String unknown; /* settable, but doesn't stick. probably obsolete */ + lsa_String reserved; /* settable, but doesn't stick. probably obsolete */ uint16 country_code; uint16 code_page; } samr_UserInfo2; @@ -982,7 +982,7 @@ import "misc.idl", "lsa.idl", "security.idl"; lsa_BinaryString parameters; lsa_BinaryString lm_owf_password; lsa_BinaryString nt_owf_password; - lsa_String unknown3; + lsa_String private_data; uint32 buf_count; [size_is(buf_count)] uint8 *buffer; uint32 rid; @@ -997,7 +997,7 @@ import "misc.idl", "lsa.idl", "security.idl"; uint8 lm_password_set; uint8 nt_password_set; uint8 password_expired; - uint8 unknown4; + uint8 private_data_sensitive; } samr_UserInfo21; typedef [public, flag(NDR_PAHEX)] struct { |