]> git.sur5r.net Git - openldap/commitdiff
Fix ambiguous return value in lutil_passwd
authorHoward Chu <hyc@openldap.org>
Sat, 13 May 2000 00:10:24 +0000 (00:10 +0000)
committerHoward Chu <hyc@openldap.org>
Sat, 13 May 2000 00:10:24 +0000 (00:10 +0000)
libraries/liblutil/passwd.c

index a1b3201dd8c06ace913f1acf8f62e8384e85efc2..98403623c417305d9e98dcc1959c0bdb8867b358 100644 (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 )