From: Pierangelo Masarati Date: Fri, 12 May 2006 14:42:49 +0000 (+0000) Subject: always try to open config; NULL means use default X-Git-Tag: OPENLDAP_REL_ENG_2_4_1ALPHA~2^2~31 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=864e276981648abf89f0bb974b56144a7e248619;p=openldap always try to open config; NULL means use default --- 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 ) ) {