Commit b5e972fd authored by Peter Waltenberg's avatar Peter Waltenberg Committed by Rich Salz
Browse files

Exit on error in ecparam



Reviewed-by: default avatarTim Hudson <tjh@openssl.org>
(cherry picked from commit 99dcd880)
parent a15ba3cc
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -419,7 +419,8 @@ int MAIN(int argc, char **argv)
        if (!EC_GROUP_check(group, NULL)) {
            BIO_printf(bio_err, "failed\n");
            ERR_print_errors(bio_err);
        } else
            goto end;
        }
        BIO_printf(bio_err, "ok\n");

    }