From: anton Date: Tue, 5 Jul 2022 04:49:02 +0000 (+0000) Subject: cope with ASN1_TIME_set_string_X509() rename X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=98f696c210b98e9bf294fc218e6e89e877ce770c;p=openbsd cope with ASN1_TIME_set_string_X509() rename --- diff --git a/regress/lib/libcrypto/asn1/asn1time.c b/regress/lib/libcrypto/asn1/asn1time.c index 6709e7af4a8..266ab994110 100644 --- a/regress/lib/libcrypto/asn1/asn1time.c +++ b/regress/lib/libcrypto/asn1/asn1time.c @@ -1,4 +1,4 @@ -/* $OpenBSD: asn1time.c,v 1.13 2022/06/30 09:13:49 beck Exp $ */ +/* $OpenBSD: asn1time.c,v 1.14 2022/07/05 04:49:02 anton Exp $ */ /* * Copyright (c) 2015 Joel Sing * @@ -265,7 +265,7 @@ asn1_invtime_test(int test_no, struct asn1_time_test *att, int gen) "string '%s'\n", test_no, att->str); goto done; } - if (ASN1_TIME_set_string_x509(t, att->str) != 0) { + if (ASN1_TIME_set_string_X509(t, att->str) != 0) { fprintf(stderr, "FAIL: test %i - successfully set x509 TIME " "string '%s'\n", test_no, att->str); goto done; @@ -459,7 +459,7 @@ asn1_time_test(int test_no, struct asn1_time_test *att, int type) goto done; } - if (ASN1_TIME_set_string_x509(tx509, t->data) != 1) { + if (ASN1_TIME_set_string_X509(tx509, t->data) != 1) { fprintf(stderr, "FAIL: test %i - failed to set string X509 '%s'\n", test_no, t->data); goto done;