summaryrefslogtreecommitdiffstats
path: root/source/libsmb
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1997-11-02 04:11:05 +0000
committerAndrew Tridgell <tridge@samba.org>1997-11-02 04:11:05 +0000
commitc164681dfe2ad9623a59f01eea914bf27d4801e5 (patch)
treeac41193c340ac490739a6dbfdabed2278f77d23c /source/libsmb
parent21878e7d8628d05786c3c76f2943e31df1096577 (diff)
downloadsamba-c164681dfe2ad9623a59f01eea914bf27d4801e5.tar.gz
samba-c164681dfe2ad9623a59f01eea914bf27d4801e5.tar.xz
samba-c164681dfe2ad9623a59f01eea914bf27d4801e5.zip
fix some uchar/char conflicts
Diffstat (limited to 'source/libsmb')
-rw-r--r--source/libsmb/credentials.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/libsmb/credentials.c b/source/libsmb/credentials.c
index 754aebca992..b06ca6ffc6d 100644
--- a/source/libsmb/credentials.c
+++ b/source/libsmb/credentials.c
@@ -115,7 +115,7 @@ Output:
returns 1 if computed credential matches received credential
returns 0 otherwise
****************************************************************************/
-int cred_assert(DOM_CHAL *cred, char session_key[8], DOM_CHAL *stored_cred,
+int cred_assert(DOM_CHAL *cred, uchar session_key[8], DOM_CHAL *stored_cred,
UTIME timestamp)
{
DOM_CHAL cred2;
@@ -144,7 +144,7 @@ int cred_assert(DOM_CHAL *cred, char session_key[8], DOM_CHAL *stored_cred,
/****************************************************************************
checks credentials; generates next step in the credential chain
****************************************************************************/
-BOOL clnt_deal_with_creds(char sess_key[8],
+BOOL clnt_deal_with_creds(uchar sess_key[8],
DOM_CRED *sto_clnt_cred, DOM_CRED *rcv_srv_cred)
{
UTIME new_clnt_time;