Skip to content

Commit

Permalink
Fix error handling in ssltest
Browse files Browse the repository at this point in the history
Reviewed-by: Richard Levitte <[email protected]>
  • Loading branch information
mattcaswell committed Feb 6, 2015
1 parent fe6d2a3 commit ae63297
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ssl/ssltest.c
Original file line number Diff line number Diff line change
Expand Up @@ -2242,7 +2242,7 @@ int doit(SSL *s_ssl, SSL *c_ssl, long count)
if (!do_client && !do_server) {
fprintf(stdout, "ERROR IN STARTUP\n");
ERR_print_errors(bio_err);
break;
goto err;
}
if (do_client && !(done & C_DONE)) {
if (c_write) {
Expand Down

0 comments on commit ae63297

Please sign in to comment.