diff options
author | Luke Leighton <lkcl@samba.org> | 1998-10-09 20:31:52 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1998-10-09 20:31:52 +0000 |
commit | abb67ee6deac030c4bc38e166cd3e3ab086ae285 (patch) | |
tree | b05754d4b52c90b89ae8e68278153ea233c67077 /source3/rpc_client/cli_pipe.c | |
parent | 8158620124504a1ece1f1191cb8f273709039bd2 (diff) | |
download | samba-abb67ee6deac030c4bc38e166cd3e3ab086ae285.tar.gz samba-abb67ee6deac030c4bc38e166cd3e3ab086ae285.tar.bz2 samba-abb67ee6deac030c4bc38e166cd3e3ab086ae285.zip |
signed / unsigned issues spotted by herb
(This used to be commit 0b90442021aa3adb5ae7f09c53c9e54c7655d8c5)
Diffstat (limited to 'source3/rpc_client/cli_pipe.c')
-rw-r--r-- | source3/rpc_client/cli_pipe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/rpc_client/cli_pipe.c b/source3/rpc_client/cli_pipe.c index 732161ad82..d21840ec46 100644 --- a/source3/rpc_client/cli_pipe.c +++ b/source3/rpc_client/cli_pipe.c @@ -519,7 +519,7 @@ BOOL rpc_api_pipe_req(struct cli_state *cli, uint8 op_num, if (auth_seal) { crc32 = crc32_calc_buffer(data->offset, mem_data(&data->data, 0)); - NTLMSSPcalc(cli->ntlmssp_hash, mem_data(&data->data, 0), data->offset); + NTLMSSPcalc(cli->ntlmssp_hash, (uchar*)mem_data(&data->data, 0), data->offset); } if (auth_verify) @@ -532,7 +532,7 @@ BOOL rpc_api_pipe_req(struct cli_state *cli, uint8 op_num, make_rpc_auth_ntlmssp_chk(&chk, NTLMSSP_SIGN_VERSION, crc32, 0); smb_io_rpc_auth_ntlmssp_chk("auth_sign", &chk, &auth_verf, 0); - NTLMSSPcalc(cli->ntlmssp_hash, mem_data(&auth_verf.data, 4), 12); + NTLMSSPcalc(cli->ntlmssp_hash, (uchar*)mem_data(&auth_verf.data, 4), 12); } if (auth_seal || auth_verify) |