summaryrefslogtreecommitdiff
path: root/test/asn1_time_test.c
diff options
context:
space:
mode:
authorDr. David von Oheimb <David.von.Oheimb@siemens.com>2022-06-28 08:42:28 +0200
committerDr. David von Oheimb <dev@ddvo.net>2022-07-19 08:44:19 +0200
commit6097eb215266a825c9eedfab8f9c8482567ad4ab (patch)
tree0295602e89365907ab92c7cce423eb6f2d4c0eeb /test/asn1_time_test.c
parent7c310e872e72977432b3520c5d27641e13815548 (diff)
downloadopenssl-new-6097eb215266a825c9eedfab8f9c8482567ad4ab.tar.gz
libcrypto and test: rename asn1_string_to_time_t to ossl_asn1_string_to_time_t
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Shane Lontis <shane.lontis@oracle.com> Reviewed-by: David von Oheimb <david.von.oheimb@siemens.com> (Merged from https://github.com/openssl/openssl/pull/18668)
Diffstat (limited to 'test/asn1_time_test.c')
-rw-r--r--test/asn1_time_test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/asn1_time_test.c b/test/asn1_time_test.c
index 2383ec25c9..b222b44091 100644
--- a/test/asn1_time_test.c
+++ b/test/asn1_time_test.c
@@ -431,10 +431,10 @@ static int convert_asn1_to_time_t(int idx)
{
time_t testdateutc;
- testdateutc = asn1_string_to_time_t(asn1_to_utc[idx].input);
+ testdateutc = ossl_asn1_string_to_time_t(asn1_to_utc[idx].input);
if (!TEST_time_t_eq(testdateutc, asn1_to_utc[idx].expected)) {
- TEST_info("asn1_string_to_time_t (%s) failed: expected %li, got %li\n",
+ TEST_info("ossl_asn1_string_to_time_t (%s) failed: expected %li, got %li\n",
asn1_to_utc[idx].input, asn1_to_utc[idx].expected, (signed long) testdateutc);
return 0;
}