diff options
author | Jeremy Allison <jra@samba.org> | 2001-08-30 20:09:49 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2001-08-30 20:09:49 +0000 |
commit | 58ed70f37865d81d98d2fca87139465dc21e5bb1 (patch) | |
tree | 75e4837256042ba8d472f84f5aada159fad4af23 /source3 | |
parent | 8debe5b629cb85c88d3ad62e2c6d2831db14f0d8 (diff) | |
download | samba-58ed70f37865d81d98d2fca87139465dc21e5bb1.tar.gz samba-58ed70f37865d81d98d2fca87139465dc21e5bb1.tar.bz2 samba-58ed70f37865d81d98d2fca87139465dc21e5bb1.zip |
Fixed silly typo.
Jeremy.
(This used to be commit 6ee2b41429e43f6a9a58eba3cb01b952be3d5ca5)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/auth/pass_check.c | 6 | ||||
-rw-r--r-- | source3/passdb/pass_check.c | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/source3/auth/pass_check.c b/source3/auth/pass_check.c index f8c0da89a6..bd712b3563 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 fstring this_user[100] = ""; -static fstring this_salt[100] = ""; -static fstring this_crypted[100] = ""; +static fstring this_user; +static fstring this_salt; +static fstring this_crypted; #ifdef WITH_AFS diff --git a/source3/passdb/pass_check.c b/source3/passdb/pass_check.c index f8c0da89a6..bd712b3563 100644 --- a/source3/passdb/pass_check.c +++ b/source3/passdb/pass_check.c @@ -27,9 +27,9 @@ extern int DEBUGLEVEL; /* these are kept here to keep the string_combinations function simple */ -static fstring this_user[100] = ""; -static fstring this_salt[100] = ""; -static fstring this_crypted[100] = ""; +static fstring this_user; +static fstring this_salt; +static fstring this_crypted; #ifdef WITH_AFS |