From 5bfe3c49a1b5ee0fad40e83326cf8b4bc88240f5 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Mon, 17 Dec 2007 17:13:31 -0800 Subject: Correctly define prototypes for accessor functions. Jeremy. (This used to be commit 299ea5d122e173adf6edb6399fc90798747b0c97) --- 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 fe1f98c150..813540d9fa 100644 --- a/source3/auth/pass_check.c +++ b/source3/auth/pass_check.c @@ -28,7 +28,7 @@ /* these are kept here to keep the string_combinations function simple */ static char *ths_user; -static const char *get_this_user() +static const char *get_this_user(void) { if (!ths_user) { return ""; @@ -49,7 +49,7 @@ static const char *set_this_user(const char *newuser) #if !defined(WITH_PAM) static char *ths_salt; /* This must be writable. */ -static char *get_this_salt() +static char *get_this_salt(void) { return ths_salt; } @@ -66,7 +66,7 @@ static const char *set_this_salt(const char *newsalt) } static char *ths_crypted; -static const char *get_this_crypted() +static const char *get_this_crypted(void) { if (!ths_crypted) { return ""; -- cgit