diff options
author | Luke Leighton <lkcl@samba.org> | 1998-10-22 18:15:23 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1998-10-22 18:15:23 +0000 |
commit | cbd0b2ccf9519bcada58567b88987e134563058d (patch) | |
tree | 4db13a458318e01a578013508ce61387690f735f /source3/include | |
parent | 034a12fdcb6f707b382d9da481bc012a3c49da76 (diff) | |
download | samba-cbd0b2ccf9519bcada58567b88987e134563058d.tar.gz samba-cbd0b2ccf9519bcada58567b88987e134563058d.tar.bz2 samba-cbd0b2ccf9519bcada58567b88987e134563058d.zip |
bug fix in lsa_trans_names.
well-known aliases S-1-5-20 is actually S-1-5-0x20 but sid_to_string does
decimal not hexadecimal oops.
(This used to be commit 4d830e243650729344a2d1b238075e787802ff8b)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index f9c3d8734b..d75832395d 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -1343,7 +1343,8 @@ BOOL do_wks_query_info(struct cli_state *cli, /*The following definitions come from rpc_parse/parse_lsa.c */ -void make_lsa_trans_name(LSA_TRANS_NAME *trn, uint32 sid_name_use, char *name, uint32 idx); +void make_lsa_trans_name(LSA_TRANS_NAME *trn, UNISTR2 *uni_name, + uint32 sid_name_use, char *name, uint32 idx); void make_lsa_sec_qos(LSA_SEC_QOS *qos, uint16 imp_lev, uint8 ctxt, uint8 eff, uint32 unknown); void make_lsa_obj_attr(LSA_OBJ_ATTR *attr, uint32 attributes, LSA_SEC_QOS *qos); |