diff options
author | Andrew Tridgell <tridge@samba.org> | 2001-12-31 13:46:26 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2001-12-31 13:46:26 +0000 |
commit | eb4e10115310b6ed23b92abac2e79454c80930b1 (patch) | |
tree | 21872afdfeb5192627856880c3fbc85432913444 /source3/smbd | |
parent | af7bd393dabc51cedafc1ea24cc9f7101c81f4bf (diff) | |
download | samba-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/smbd')
-rw-r--r-- | source3/smbd/sesssetup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/sesssetup.c b/source3/smbd/sesssetup.c index 7791637606..57e0ee2f3a 100644 --- a/source3/smbd/sesssetup.c +++ b/source3/smbd/sesssetup.c @@ -77,7 +77,7 @@ static NTSTATUS check_guest_password(auth_serversupplied_info **server_info) auth_usersupplied_info *user_info = NULL; NTSTATUS nt_status; - char chal[8]; + unsigned char chal[8]; ZERO_STRUCT(chal); |