diff options
author | Michael Brown <mcb30@ipxe.org> | 2014-03-25 16:09:16 +0000 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2014-03-25 16:30:43 +0000 |
commit | e1ebc50f81eb1ad24218a5e69d42565a9d8cc035 (patch) | |
tree | 4ccc865359dd1f65e7382e663a80e90d7b0db3b6 /src/include/ipxe/x509.h | |
parent | 01fa7efa38060c010103d444b47a2cd3ff684f82 (diff) | |
download | ipxe-e1ebc50f81eb1ad24218a5e69d42565a9d8cc035.tar.gz |
[crypto] Remove dynamically-allocated storage for certificate OCSP URI
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include/ipxe/x509.h')
-rw-r--r-- | src/include/ipxe/x509.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/ipxe/x509.h b/src/include/ipxe/x509.h index 3e4bcd205..483153bbe 100644 --- a/src/include/ipxe/x509.h +++ b/src/include/ipxe/x509.h @@ -133,7 +133,7 @@ enum x509_extended_key_usage_bits { /** X.509 certificate OCSP responder */ struct x509_ocsp_responder { /** URI */ - char *uri; + struct asn1_cursor uri; /** OCSP status is good */ int good; }; |