summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/asn1/x_x509.c
diff options
context:
space:
mode:
authorjsing <>2015-02-10 04:21:50 +0000
committerjsing <>2015-02-10 04:21:50 +0000
commit803fe92d2ba2e99892a8bb84620d364da4518cb7 (patch)
tree08b1f7d61accebd33520532c3d344995d3a51ea4 /src/lib/libcrypto/asn1/x_x509.c
parent64e9476b7bc2ceaca55b2f0f7a5107d5a8838e5d (diff)
downloadopenbsd-803fe92d2ba2e99892a8bb84620d364da4518cb7.tar.gz
openbsd-803fe92d2ba2e99892a8bb84620d364da4518cb7.tar.bz2
openbsd-803fe92d2ba2e99892a8bb84620d364da4518cb7.zip
Expand the IMPLEMENT_ASN1_DUP_FUNCTION macro so that the code is visible
and functions can be readily located. Change has been scripted and the generated assembly only differs by changes to line numbers. Discussed with beck@ miod@ tedu@
Diffstat (limited to 'src/lib/libcrypto/asn1/x_x509.c')
-rw-r--r--src/lib/libcrypto/asn1/x_x509.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/lib/libcrypto/asn1/x_x509.c b/src/lib/libcrypto/asn1/x_x509.c
index 8fd2d7684b..a2778911cd 100644
--- a/src/lib/libcrypto/asn1/x_x509.c
+++ b/src/lib/libcrypto/asn1/x_x509.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: x_x509.c,v 1.18 2015/02/09 15:05:59 jsing Exp $ */ 1/* $OpenBSD: x_x509.c,v 1.19 2015/02/10 04:21:50 jsing Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -187,7 +187,12 @@ X509_free(X509 *a)
187{ 187{
188 ASN1_item_free((ASN1_VALUE *)a, &X509_it); 188 ASN1_item_free((ASN1_VALUE *)a, &X509_it);
189} 189}
190IMPLEMENT_ASN1_DUP_FUNCTION(X509) 190
191X509 *
192X509_dup(X509 *x)
193{
194 return ASN1_item_dup(ASN1_ITEM_rptr(X509), x);
195}
191 196
192int 197int
193X509_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func, 198X509_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func,