From: Howard Chu Date: Sat, 13 May 2000 00:10:24 +0000 (+0000) Subject: Fix ambiguous return value in lutil_passwd X-Git-Tag: LDBM_PRE_GIANT_RWLOCK~2987 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=3f618bfe03658c9dd5364785dc45feaec4997814;p=openldap Fix ambiguous return value in lutil_passwd --- diff --git a/libraries/liblutil/passwd.c b/libraries/liblutil/passwd.c index a1b3201dd8..98403623c4 100644 --- a/libraries/liblutil/passwd.c +++ b/libraries/liblutil/passwd.c @@ -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 )