Fix ambiguous return value in lutil_passwd

This commit is contained in:
Howard Chu 2000-05-13 00:10:24 +00:00
parent fadaf7f706
commit 3f618bfe03

View file

@ -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 )