mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-28 10:39:34 -05:00
Fix ambiguous return value in lutil_passwd
This commit is contained in:
parent
fadaf7f706
commit
3f618bfe03
1 changed files with 1 additions and 3 deletions
|
|
@ -288,10 +288,8 @@ lutil_passwd(
|
|||
? memcmp( passwd->bv_val, cred->bv_val, passwd->bv_len )
|
||||
: 1;
|
||||
}
|
||||
#else
|
||||
return 1;
|
||||
#endif
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
struct berval * lutil_passwd_generate( ber_len_t len )
|
||||
|
|
|
|||
Loading…
Reference in a new issue