From 5012ea1a91a430d2692121a8c15af36cb4f96713 Mon Sep 17 00:00:00 2001 From: jcarneal Date: Fri, 20 Oct 2000 16:59:52 +0000 Subject: [PATCH] Jeff Carneal Had to remove 'static' deinition of rad_check_password so that the function can be called by modules with usercollide. --- src/main/auth.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/auth.c b/src/main/auth.c index 244e4b2..e95b03e 100644 --- a/src/main/auth.c +++ b/src/main/auth.c @@ -12,6 +12,7 @@ static const char rcsid[] = "$Id$"; #include #include #include +#include #if HAVE_MALLOC_H # include @@ -119,7 +120,7 @@ static int check_expiration(REQUEST *request) * * NOTE: NOT the same as the RLM_ values ! */ -static int rad_check_password(REQUEST *request) +int rad_check_password(REQUEST *request) { VALUE_PAIR *auth_type_pair; VALUE_PAIR *cur_config_item; -- 2.1.4