Add missing x509_init_oid() calls in regress tests.
authorclaudio <claudio@openbsd.org>
Wed, 19 Jan 2022 08:24:43 +0000 (08:24 +0000)
committerclaudio <claudio@openbsd.org>
Wed, 19 Jan 2022 08:24:43 +0000 (08:24 +0000)
Found by anton@

regress/usr.sbin/rpki-client/test-cert.c
regress/usr.sbin/rpki-client/test-gbr.c
regress/usr.sbin/rpki-client/test-mft.c
regress/usr.sbin/rpki-client/test-roa.c

index 6251552..f7fb7a4 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: test-cert.c,v 1.16 2022/01/18 16:41:00 claudio Exp $ */
+/*     $Id: test-cert.c,v 1.17 2022/01/19 08:24:43 claudio Exp $ */
 /*
  * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
  *
@@ -43,6 +43,7 @@ main(int argc, char *argv[])
        ERR_load_crypto_strings();
        OpenSSL_add_all_ciphers();
        OpenSSL_add_all_digests();
+       x509_init_oid();
 
        while ((c = getopt(argc, argv, "tv")) != -1)
                switch (c) {
index b731051..81c6b75 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: test-gbr.c,v 1.5 2021/10/26 16:59:54 claudio Exp $ */
+/*     $Id: test-gbr.c,v 1.6 2022/01/19 08:24:43 claudio Exp $ */
 /*
  * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
  *
@@ -46,6 +46,7 @@ main(int argc, char *argv[])
        ERR_load_crypto_strings();
        OpenSSL_add_all_ciphers();
        OpenSSL_add_all_digests();
+       x509_init_oid();
 
        while ((c = getopt(argc, argv, "pv")) != -1)
                switch (c) {
index fe7a08b..c87cd60 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: test-mft.c,v 1.17 2021/10/26 16:59:54 claudio Exp $ */
+/*     $Id: test-mft.c,v 1.18 2022/01/19 08:24:43 claudio Exp $ */
 /*
  * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
  *
@@ -48,6 +48,7 @@ main(int argc, char *argv[])
        ERR_load_crypto_strings();
        OpenSSL_add_all_ciphers();
        OpenSSL_add_all_digests();
+       x509_init_oid();
 
        while (-1 != (c = getopt(argc, argv, "pv")))
                switch (c) {
index ff71bcf..34c2236 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: test-roa.c,v 1.14 2021/10/26 16:59:54 claudio Exp $ */
+/*     $Id: test-roa.c,v 1.15 2022/01/19 08:24:43 claudio Exp $ */
 /*
  * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
  *
@@ -45,6 +45,7 @@ main(int argc, char *argv[])
        ERR_load_crypto_strings();
        OpenSSL_add_all_ciphers();
        OpenSSL_add_all_digests();
+       x509_init_oid();
 
        while ((c = getopt(argc, argv, "pv")) != -1)
                switch (c) {