diff options
Diffstat (limited to 'source3')
-rw-r--r-- | source3/rpc_client/cli_login.c | 4 | ||||
-rw-r--r-- | source3/rpc_parse/parse_net.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/source3/rpc_client/cli_login.c b/source3/rpc_client/cli_login.c index 7c7398243d..205ccc7a24 100644 --- a/source3/rpc_client/cli_login.c +++ b/source3/rpc_client/cli_login.c @@ -156,8 +156,8 @@ password equivalents over the network. JRA. ****************************************************************************/ BOOL cli_nt_login_network(struct cli_state *cli, char *domain, char *username, - uint32 smb_userid_low, char lm_chal[8], char lm_chal_resp[24], - char nt_chal_resp[24], + uint32 smb_userid_low, char lm_chal[8], + char *lm_chal_resp, char *nt_chal_resp, NET_ID_INFO_CTR *ctr, NET_USER_INFO_3 *user_info3) { DEBUG(5,("cli_nt_login_network: %d\n", __LINE__)); diff --git a/source3/rpc_parse/parse_net.c b/source3/rpc_parse/parse_net.c index bcc8e876b5..06430e75e6 100644 --- a/source3/rpc_parse/parse_net.c +++ b/source3/rpc_parse/parse_net.c @@ -765,8 +765,8 @@ void init_id_info2(NET_ID_INFO_2 *id, char *domain_name, uint32 param_ctrl, uint32 log_id_low, uint32 log_id_high, char *user_name, char *wksta_name, unsigned char lm_challenge[8], - unsigned char lm_chal_resp[24], - unsigned char nt_chal_resp[24]) + unsigned char *lm_chal_resp, + unsigned char *nt_chal_resp) { int len_domain_name = strlen(domain_name); int len_user_name = strlen(user_name ); |