Fix certificate version number in test

The version number 3 means version 4, while 2 means version 3. Since this is the v3nametest, version 3 should be used.

CLA: Trivial

Reviewed-by: Rich Salz <rsalz@openssl.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/3577)
This commit is contained in:
Thijs Wenker 2017-05-29 02:55:43 +02:00 committed by Richard Levitte
parent aef492683b
commit 3bbecb0e93

View file

@ -251,7 +251,7 @@ static X509 *make_cert()
if (!TEST_ptr(crt = X509_new()))
return NULL;
if (!TEST_true(X509_set_version(crt, 3))) {
if (!TEST_true(X509_set_version(crt, 2))) {
X509_free(crt);
return NULL;
}