diff options
| author | jsing <> | 2015-02-10 05:25:45 +0000 |
|---|---|---|
| committer | jsing <> | 2015-02-10 05:25:45 +0000 |
| commit | bef5b62e5cb2b7f34be8c33038e3dfe534e6cbed (patch) | |
| tree | a96c56e7d9c17b8f427e46811a048b0b099939e7 /src/lib/libcrypto/asn1/x_x509.c | |
| parent | 2bd884004b68a3cdb5e24f3a1e6e8e3baa60a43e (diff) | |
| download | openbsd-bef5b62e5cb2b7f34be8c33038e3dfe534e6cbed.tar.gz openbsd-bef5b62e5cb2b7f34be8c33038e3dfe534e6cbed.tar.bz2 openbsd-bef5b62e5cb2b7f34be8c33038e3dfe534e6cbed.zip | |
Manually expand ASN1_ITEM_rptr macros that should have been expanded with
the IMPLEMENT_ASN1_DUP_FUNCTION macro.
Diffstat (limited to 'src/lib/libcrypto/asn1/x_x509.c')
| -rw-r--r-- | src/lib/libcrypto/asn1/x_x509.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/asn1/x_x509.c b/src/lib/libcrypto/asn1/x_x509.c index a2778911cd..77ec8c41cf 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.19 2015/02/10 04:21:50 jsing Exp $ */ | 1 | /* $OpenBSD: x_x509.c,v 1.20 2015/02/10 05:25:45 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 | * |
| @@ -191,7 +191,7 @@ X509_free(X509 *a) | |||
| 191 | X509 * | 191 | X509 * |
| 192 | X509_dup(X509 *x) | 192 | X509_dup(X509 *x) |
| 193 | { | 193 | { |
| 194 | return ASN1_item_dup(ASN1_ITEM_rptr(X509), x); | 194 | return ASN1_item_dup(&X509_it, x); |
| 195 | } | 195 | } |
| 196 | 196 | ||
| 197 | int | 197 | int |
