diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2016-12-27 16:12:48 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2016-12-27 16:12:48 +0000 |
commit | 5a90ca3e647bcf3812de1d1b6e90ead592f03e8c (patch) | |
tree | bc5bf63d2fbdadf6e0e01f6154a6e66423640a0b | |
parent | e4c5ce047b35bb87584d31f4201562baae79fbfc (diff) |
Expand DECLARE_ASN1_{NDEF,PRINT}_FUNCTION macros - no change in
preprocesssor output.
-rw-r--r-- | lib/libcrypto/pkcs7/pkcs7.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libcrypto/pkcs7/pkcs7.h b/lib/libcrypto/pkcs7/pkcs7.h index d3f398dc34b..520cc3c519b 100644 --- a/lib/libcrypto/pkcs7/pkcs7.h +++ b/lib/libcrypto/pkcs7/pkcs7.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pkcs7.h,v 1.17 2016/12/27 16:05:57 jsing Exp $ */ +/* $OpenBSD: pkcs7.h,v 1.18 2016/12/27 16:12:47 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -321,8 +321,8 @@ extern const ASN1_ITEM PKCS7_it; extern const ASN1_ITEM PKCS7_ATTR_SIGN_it; extern const ASN1_ITEM PKCS7_ATTR_VERIFY_it; -DECLARE_ASN1_NDEF_FUNCTION(PKCS7) -DECLARE_ASN1_PRINT_FUNCTION(PKCS7) +int i2d_PKCS7_NDEF(PKCS7 *a, unsigned char **out); +int PKCS7_print_ctx(BIO *out, PKCS7 *x, int indent, const ASN1_PCTX *pctx); long PKCS7_ctrl(PKCS7 *p7, int cmd, long larg, char *parg); |