diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2015-10-22 13:58:48 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2015-10-22 13:58:48 +0000 |
commit | c2318da358f5b5fe34031da62803a9fdf7b08ec6 (patch) | |
tree | 64ad34ce8431f46a1ca7379049d2918aefa3f110 | |
parent | 625615d962c6db2a406dcaf85e07c5ca2dce1520 (diff) |
Fix case where we wanted to test ASN1_TIME_set_string() but were testing
ASN1_UTCTIME_set_string() twice instead.
-rw-r--r-- | regress/lib/libcrypto/asn1/asn1time.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/lib/libcrypto/asn1/asn1time.c b/regress/lib/libcrypto/asn1/asn1time.c index 6c938087f1a..0334e492557 100644 --- a/regress/lib/libcrypto/asn1/asn1time.c +++ b/regress/lib/libcrypto/asn1/asn1time.c @@ -1,4 +1,4 @@ -/* $OpenBSD: asn1time.c,v 1.4 2015/10/19 16:29:22 beck Exp $ */ +/* $OpenBSD: asn1time.c,v 1.5 2015/10/22 13:58:47 jsing Exp $ */ /* * Copyright (c) 2015 Joel Sing <jsing@openbsd.org> * @@ -211,7 +211,7 @@ asn1_invtime_test(int test_no, struct asn1_time_test *att) "string '%s'\n", test_no, att->str); goto done; } - if (ASN1_UTCTIME_set_string(ut, att->str) != 0) { + if (ASN1_TIME_set_string(t, att->str) != 0) { fprintf(stderr, "FAIL: test %i - successfully set TIME " "string '%s'\n", test_no, att->str); goto done; |