summaryrefslogtreecommitdiff
path: root/source/libsmb
diff options
context:
space:
mode:
authorLuke Leighton <lkcl@samba.org>2000-02-22 20:49:16 +0000
committerLuke Leighton <lkcl@samba.org>2000-02-22 20:49:16 +0000
commit111b6d140ae932fa9355cfd3ac38654ab9d8702c (patch)
treec03ed5e4df6f3e8544598d2fa6a2fe2c3af40318 /source/libsmb
parent59ebd27992372b06fef05a479b14b1868bae8fd2 (diff)
downloadsamba-111b6d140ae932fa9355cfd3ac38654ab9d8702c.tar.gz
fixed HAVE_SETUID autoconf problems.
const issues in credentials.c / cli_login. make proto
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 7a4d921810b..7d6c7c33b81 100644
--- a/source/libsmb/credentials.c
+++ b/source/libsmb/credentials.c
@@ -46,8 +46,8 @@ Input: 8 byte challenge block
Output:
8 byte session key
****************************************************************************/
-void cred_session_key(DOM_CHAL *clnt_chal, DOM_CHAL *srv_chal, char *pass,
- uchar session_key[8])
+void cred_session_key(DOM_CHAL *clnt_chal, DOM_CHAL *srv_chal, const char *pass,
+ const uchar session_key[8])
{
uint32 sum[2];
unsigned char sum2[8];