summaryrefslogtreecommitdiffstats
path: root/source/auth
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2002-07-20 11:58:06 +0000
committerAndrew Bartlett <abartlet@samba.org>2002-07-20 11:58:06 +0000
commit8196ee908e10db2119e480fe1b0a71b31a16febc (patch)
treeff20f0a5d5445ed7b42b830d6bae3c2cf306868f /source/auth
parent2a3d821c77c7648de43b11dd951f6f16d7be5b3c (diff)
downloadsamba-8196ee908e10db2119e480fe1b0a71b31a16febc.tar.gz
samba-8196ee908e10db2119e480fe1b0a71b31a16febc.tar.xz
samba-8196ee908e10db2119e480fe1b0a71b31a16febc.zip
Try to fix up warnings - particularly on the IRIX 64 bit compiler (which had a
distinction between uchar and char). Lots of const etc. Andrew Bartlett
Diffstat (limited to 'source/auth')
-rw-r--r--source/auth/auth_domain.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/auth/auth_domain.c b/source/auth/auth_domain.c
index bc03528985a..ee3793a6c1e 100644
--- a/source/auth/auth_domain.c
+++ b/source/auth/auth_domain.c
@@ -503,7 +503,7 @@ static NTSTATUS check_trustdomain_security(const struct auth_context *auth_conte
#ifdef DEBUG_PASSWORD
DEBUG(100, ("Trust password for domain %s is %s\n", user_info->domain.str, trust_password));
#endif
- E_md4hash((uchar *)trust_password, trust_md4_password);
+ E_md4hash(trust_password, trust_md4_password);
SAFE_FREE(trust_password);
#if 0