summaryrefslogtreecommitdiff
path: root/source3/auth/pass_check.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2001-08-30 19:16:56 +0000
committerJeremy Allison <jra@samba.org>2001-08-30 19:16:56 +0000
commit8debe5b629cb85c88d3ad62e2c6d2831db14f0d8 (patch)
tree05f87c6b1524b8d50a7c56e37d036a8e028eaa11 /source3/auth/pass_check.c
parente555b969b2201bdb48ad9a0fc79f1e13ea25ec24 (diff)
downloadsamba-8debe5b629cb85c88d3ad62e2c6d2831db14f0d8.tar.gz
Fix from Paul Green to set correct lengths.
Jeremy. (This used to be commit 52b9b6d519c38b2a3e524d098a09fb996e8a2047)
Diffstat (limited to 'source3/auth/pass_check.c')
-rw-r--r--source3/auth/pass_check.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/auth/pass_check.c b/source3/auth/pass_check.c
index b6cc403b869..f8c0da89a6e 100644
--- a/source3/auth/pass_check.c
+++ b/source3/auth/pass_check.c
@@ -27,9 +27,9 @@
extern int DEBUGLEVEL;
/* these are kept here to keep the string_combinations function simple */
-static char this_user[100] = "";
-static char this_salt[100] = "";
-static char this_crypted[100] = "";
+static fstring this_user[100] = "";
+static fstring this_salt[100] = "";
+static fstring this_crypted[100] = "";
#ifdef WITH_AFS