summaryrefslogtreecommitdiff
path: root/source3/auth
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2001-12-31 13:46:26 +0000
committerAndrew Tridgell <tridge@samba.org>2001-12-31 13:46:26 +0000
commiteb4e10115310b6ed23b92abac2e79454c80930b1 (patch)
tree21872afdfeb5192627856880c3fbc85432913444 /source3/auth
parentaf7bd393dabc51cedafc1ea24cc9f7101c81f4bf (diff)
downloadsamba-eb4e10115310b6ed23b92abac2e79454c80930b1.tar.gz
samba-eb4e10115310b6ed23b92abac2e79454c80930b1.tar.bz2
samba-eb4e10115310b6ed23b92abac2e79454c80930b1.zip
- portablitity fixes for cc -64 on irix
- fixed gid* bug in rpc_server (This used to be commit 48aa90c48c5f0e3054c4acdc49668e222e7c0d36)
Diffstat (limited to 'source3/auth')
-rw-r--r--source3/auth/auth_util.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/auth/auth_util.c b/source3/auth/auth_util.c
index 6f7ec8c0d7..4265e77093 100644
--- a/source3/auth/auth_util.c
+++ b/source3/auth/auth_util.c
@@ -279,7 +279,7 @@ BOOL make_user_info_netlogon_interactive(auth_usersupplied_info **user_info,
char *smb_name,
char *client_domain,
char *wksta_name,
- char chal[8],
+ uchar chal[8],
uchar lm_interactive_pwd[16],
uchar nt_interactive_pwd[16],
uchar *dc_sess_key)
@@ -360,7 +360,7 @@ BOOL make_user_info_winbind(auth_usersupplied_info **user_info,
const char *username,
const char *domain,
const char *password,
- char chal[8] /* Give winbind back the challenge we used */
+ uchar chal[8] /* Give winbind back the challenge we used */
)
{
unsigned char local_lm_response[24];
@@ -468,7 +468,7 @@ BOOL make_user_info_winbind_crap(auth_usersupplied_info **user_info,
BOOL make_user_info_for_reply(auth_usersupplied_info **user_info,
char *smb_name,
char *client_domain,
- char chal[8],
+ unsigned char chal[8],
DATA_BLOB plaintext_password)
{