From 8debe5b629cb85c88d3ad62e2c6d2831db14f0d8 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Thu, 30 Aug 2001 19:16:56 +0000 Subject: Fix from Paul Green to set correct lengths. Jeremy. (This used to be commit 52b9b6d519c38b2a3e524d098a09fb996e8a2047) --- source3/auth/pass_check.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source3/auth') diff --git a/source3/auth/pass_check.c b/source3/auth/pass_check.c index b6cc403b86..f8c0da89a6 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 -- cgit