mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 00:29:35 -05:00
Fix previous commit, lutil_passwd_scheme() returns boolean, not pointer.
This commit is contained in:
parent
7e68108d4a
commit
a1063a041d
1 changed files with 1 additions and 1 deletions
|
|
@ -522,7 +522,7 @@ read_config( const char *fname )
|
|||
|
||||
}
|
||||
|
||||
if ( lutil_passwd_scheme( cargv[1] ) == NULL ) {
|
||||
if ( lutil_passwd_scheme( cargv[1] ) == 0 ) {
|
||||
#ifdef NEW_LOGGING
|
||||
LDAP_LOG(( "config", LDAP_LEVEL_CRIT,
|
||||
"%s: line %d: password scheme \"%s\" not available\n",
|
||||
|
|
|
|||
Loading…
Reference in a new issue