diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2022-07-04 14:39:44 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2022-07-04 14:39:44 +0000 |
commit | 9eed532c2f9e3f09942c5d8096ef2bb0c533da08 (patch) | |
tree | 740ae8258ba8afb5d2f2262d48093d31e5c82e18 /lib/libcrypto/asn1/asn1.h | |
parent | 50095376fd932e7c93c357d0a9a1ca000b023191 (diff) |
The OpenSSL API is called ASN1_TIME_set_string_X509() (uppercase x)
Diffstat (limited to 'lib/libcrypto/asn1/asn1.h')
-rw-r--r-- | lib/libcrypto/asn1/asn1.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcrypto/asn1/asn1.h b/lib/libcrypto/asn1/asn1.h index 3ff3f51d34d..3f9645a1394 100644 --- a/lib/libcrypto/asn1/asn1.h +++ b/lib/libcrypto/asn1/asn1.h @@ -1,4 +1,4 @@ -/* $OpenBSD: asn1.h,v 1.65 2022/06/27 13:54:57 beck Exp $ */ +/* $OpenBSD: asn1.h,v 1.66 2022/07/04 14:39:43 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -724,7 +724,7 @@ int ASN1_TIME_to_tm(const ASN1_TIME *s, struct tm *tm); int ASN1_TIME_compare(const ASN1_TIME *t1, const ASN1_TIME *t2); int ASN1_TIME_cmp_time_t(const ASN1_TIME *s, time_t t2); int ASN1_TIME_normalize(ASN1_TIME *t); -int ASN1_TIME_set_string_x509(ASN1_TIME *time, const char *str); +int ASN1_TIME_set_string_X509(ASN1_TIME *time, const char *str); #endif int ASN1_TIME_diff(int *pday, int *psec, const ASN1_TIME *from, const ASN1_TIME *to); |