diff options
Diffstat (limited to 'source3')
-rw-r--r-- | source3/rpc_parse/parse_misc.c | 2 | ||||
-rw-r--r-- | source3/rpc_parse/parse_net.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/source3/rpc_parse/parse_misc.c b/source3/rpc_parse/parse_misc.c index 2a6560f8ce..3015e383fd 100644 --- a/source3/rpc_parse/parse_misc.c +++ b/source3/rpc_parse/parse_misc.c @@ -786,7 +786,7 @@ void init_buf_unistr2(UNISTR2 *str, uint32 *ptr, const char *buf) Copies a UNISTR2 structure. ********************************************************************/ -void copy_unistr2(UNISTR2 *str, UNISTR2 *from) +void copy_unistr2(UNISTR2 *str, const UNISTR2 *from) { /* set up string lengths. add one if string is not null-terminated */ diff --git a/source3/rpc_parse/parse_net.c b/source3/rpc_parse/parse_net.c index 37bf6755b7..7f777c9434 100644 --- a/source3/rpc_parse/parse_net.c +++ b/source3/rpc_parse/parse_net.c @@ -1977,14 +1977,14 @@ static BOOL net_io_sam_account_info(char *desc, uint8 sess_key[16], if (ps->io) { /* reading */ -// FIXME prs_hash1(ps, ps->offset, sess_key); +/* // FIXME prs_hash1(ps, ps->offset, sess_key); */ } net_io_sam_passwd_info("pass", &(info->pass), ps, depth); if (!ps->io) { /* writing */ -// FIXME TOO prs_hash1(ps, old_offset, sess_key); +/* // FIXME TOO prs_hash1(ps, old_offset, sess_key); */ } } ps->data_offset = old_offset + len; |