summaryrefslogtreecommitdiff
path: root/source3/include
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
commite67c2e9dc64e8a9f848d2769c33eef1d09fdb3e1 (patch)
tree69e033ff51d0d11b948af9b7c2ff578281073da9 /source3/include
parent4012c1cc8f47c7b3271a76a362ed2e4be4e8405c (diff)
downloadsamba-e67c2e9dc64e8a9f848d2769c33eef1d09fdb3e1.tar.gz
samba-e67c2e9dc64e8a9f848d2769c33eef1d09fdb3e1.tar.bz2
samba-e67c2e9dc64e8a9f848d2769c33eef1d09fdb3e1.zip
fix some uchar/char conflicts
(This used to be commit c164681dfe2ad9623a59f01eea914bf27d4801e5)
Diffstat (limited to 'source3/include')
-rw-r--r--source3/include/proto.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h
index 4781b103ce..99a194d5c5 100644
--- a/source3/include/proto.h
+++ b/source3/include/proto.h
@@ -111,9 +111,9 @@ void cred_session_key(DOM_CHAL *clnt_chal, DOM_CHAL *srv_chal, char *pass,
uchar session_key[8]);
void cred_create(uchar session_key[8], DOM_CHAL *stor_cred, UTIME timestamp,
DOM_CHAL *cred);
-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);
-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);
BOOL deal_with_creds(uchar sess_key[8],
DOM_CRED *sto_clnt_cred,