diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2022-09-03 18:59:10 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2022-09-03 18:59:10 +0000 |
commit | 58d01b55935fc7a4a1147fa1f560c8b4a501e78f (patch) | |
tree | bb75b0ce6479335bf96c109ebf8a8661d1cea04d | |
parent | b927dbb5888996dd764549f62028a5bb0c674fa3 (diff) |
Remove duplicate prototype that just snuck in.
-rw-r--r-- | lib/libcrypto/asn1/asn1_locl.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/libcrypto/asn1/asn1_locl.h b/lib/libcrypto/asn1/asn1_locl.h index 1eb7ee402ec..aa3b50bbab5 100644 --- a/lib/libcrypto/asn1/asn1_locl.h +++ b/lib/libcrypto/asn1/asn1_locl.h @@ -1,4 +1,4 @@ -/* $OpenBSD: asn1_locl.h,v 1.37 2022/09/03 18:52:18 jsing Exp $ */ +/* $OpenBSD: asn1_locl.h,v 1.38 2022/09/03 18:59:09 jsing Exp $ */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project 2006. */ @@ -213,8 +213,6 @@ int c2i_ASN1_BIT_STRING_cbs(ASN1_BIT_STRING **out_abs, CBS *cbs); int c2i_ASN1_ENUMERATED_cbs(ASN1_ENUMERATED **out_aenum, CBS *cbs); -int c2i_ASN1_ENUMERATED_cbs(ASN1_ENUMERATED **out_aenum, CBS *cbs); - int asn1_aint_get_uint64(CBS *cbs, uint64_t *out_val); int asn1_aint_set_uint64(uint64_t val, uint8_t **out_data, int *out_len); int asn1_aint_get_int64(CBS *cbs, int negative, int64_t *out_val); |