diff options
author | jsing <> | 2016-12-30 15:38:13 +0000 |
---|---|---|
committer | jsing <> | 2016-12-30 15:38:13 +0000 |
commit | d4b09bfd41d8d40b82b197b4ec8b0232cd6ee1fa (patch) | |
tree | 504f0cb89b43c50cb0a2a5677649170a8b6c460e /src/lib/libcrypto/ocsp/ocsp_cl.c | |
parent | 9abb4e3e6af169bb9250abceb9ac5f988efd027d (diff) | |
download | openbsd-d4b09bfd41d8d40b82b197b4ec8b0232cd6ee1fa.tar.gz openbsd-d4b09bfd41d8d40b82b197b4ec8b0232cd6ee1fa.tar.bz2 openbsd-d4b09bfd41d8d40b82b197b4ec8b0232cd6ee1fa.zip |
Expand ASN1_ITEM_rptr macros - no change in generated assembly.
Diffstat (limited to 'src/lib/libcrypto/ocsp/ocsp_cl.c')
-rw-r--r-- | src/lib/libcrypto/ocsp/ocsp_cl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/ocsp/ocsp_cl.c b/src/lib/libcrypto/ocsp/ocsp_cl.c index 40417973f5..6b8fb87880 100644 --- a/src/lib/libcrypto/ocsp/ocsp_cl.c +++ b/src/lib/libcrypto/ocsp/ocsp_cl.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ocsp_cl.c,v 1.12 2016/11/04 18:07:23 beck Exp $ */ | 1 | /* $OpenBSD: ocsp_cl.c,v 1.13 2016/12/30 15:31:58 jsing Exp $ */ |
2 | /* Written by Tom Titchener <Tom_Titchener@groove.net> for the OpenSSL | 2 | /* Written by Tom Titchener <Tom_Titchener@groove.net> for the OpenSSL |
3 | * project. */ | 3 | * project. */ |
4 | 4 | ||
@@ -212,7 +212,7 @@ OCSP_response_get1_basic(OCSP_RESPONSE *resp) | |||
212 | return NULL; | 212 | return NULL; |
213 | } | 213 | } |
214 | 214 | ||
215 | return ASN1_item_unpack(rb->response, ASN1_ITEM_rptr(OCSP_BASICRESP)); | 215 | return ASN1_item_unpack(rb->response, &OCSP_BASICRESP_it); |
216 | } | 216 | } |
217 | 217 | ||
218 | /* Return number of OCSP_SINGLERESP reponses present in | 218 | /* Return number of OCSP_SINGLERESP reponses present in |