Skip to content

Commit

Permalink
Bug 1370534 - Fix erroneous condition in BL_FIPSEntryOK() r=franziskus
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Taubert committed Jun 6, 2017
1 parent 8342b40 commit d512521
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/freebl/fipsfreebl.c
Expand Up @@ -1707,7 +1707,7 @@ BL_FIPSEntryOK(PRBool freebl_only)
return SECSuccess;
}
/* standalone freebl can initialize */
if (freebl_only & self_tests_freebl_success) {
if (freebl_only && self_tests_freebl_success) {
return SECSuccess;
}
PORT_SetError(SEC_ERROR_LIBRARY_FAILURE);
Expand Down

0 comments on commit d512521

Please sign in to comment.