From 864e276981648abf89f0bb974b56144a7e248619 Mon Sep 17 00:00:00 2001 From: Pierangelo Masarati Date: Fri, 12 May 2006 14:42:49 +0000 Subject: [PATCH] always try to open config; NULL means use default --- contrib/slapd-modules/passwd/radius.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/contrib/slapd-modules/passwd/radius.c b/contrib/slapd-modules/passwd/radius.c index 3e0c73d7d1..57b216c61b 100644 --- a/contrib/slapd-modules/passwd/radius.c +++ b/contrib/slapd-modules/passwd/radius.c @@ -63,10 +63,8 @@ chk_radius( return LUTIL_PASSWD_ERR; } - if ( config_filename ) { - if ( rad_config( h, config_filename ) != 0 ) { - goto done; - } + if ( rad_config( h, config_filename ) != 0 ) { + goto done; } if ( rad_create_request( h, RAD_ACCESS_REQUEST ) ) { -- 2.39.5