diff options
author | jsing <> | 2015-10-16 15:09:28 +0000 |
---|---|---|
committer | jsing <> | 2015-10-16 15:09:28 +0000 |
commit | 347b8ec58659d39fe107b7425448fc5de0eeab85 (patch) | |
tree | d1b6e417f9a8275632216d4ce722a7a10f9eb92d /src/lib/libcrypto/ecdsa | |
parent | a257720ff1fc941f32aec3258685e6ae8d66fb92 (diff) | |
download | openbsd-347b8ec58659d39fe107b7425448fc5de0eeab85.tar.gz openbsd-347b8ec58659d39fe107b7425448fc5de0eeab85.tar.bz2 openbsd-347b8ec58659d39fe107b7425448fc5de0eeab85.zip |
Remove pointless uses of DECLARE_ASN1_ENCODE_FUNCTIONS_const.
DECLARE_ASN1_FUNCTIONS_const already includes this macro so using both
means we end up with duplicate function prototypes and externs.
Diffstat (limited to 'src/lib/libcrypto/ecdsa')
-rw-r--r-- | src/lib/libcrypto/ecdsa/ecs_asn1.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/libcrypto/ecdsa/ecs_asn1.c b/src/lib/libcrypto/ecdsa/ecs_asn1.c index 34c3ce0497..7f2d646c44 100644 --- a/src/lib/libcrypto/ecdsa/ecs_asn1.c +++ b/src/lib/libcrypto/ecdsa/ecs_asn1.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ecs_asn1.c,v 1.5 2015/07/24 15:51:49 jsing Exp $ */ | 1 | /* $OpenBSD: ecs_asn1.c,v 1.6 2015/10/16 15:09:28 jsing Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright (c) 2000-2002 The OpenSSL Project. All rights reserved. | 3 | * Copyright (c) 2000-2002 The OpenSSL Project. All rights reserved. |
4 | * | 4 | * |
@@ -85,7 +85,6 @@ const ASN1_ITEM ECDSA_SIG_it = { | |||
85 | }; | 85 | }; |
86 | 86 | ||
87 | DECLARE_ASN1_FUNCTIONS_const(ECDSA_SIG) | 87 | DECLARE_ASN1_FUNCTIONS_const(ECDSA_SIG) |
88 | DECLARE_ASN1_ENCODE_FUNCTIONS_const(ECDSA_SIG, ECDSA_SIG) | ||
89 | 88 | ||
90 | ECDSA_SIG * | 89 | ECDSA_SIG * |
91 | d2i_ECDSA_SIG(ECDSA_SIG **a, const unsigned char **in, long len) | 90 | d2i_ECDSA_SIG(ECDSA_SIG **a, const unsigned char **in, long len) |