aboutsummaryrefslogtreecommitdiffstats
path: root/src/include/ipxe/x509.h
diff options
context:
space:
mode:
authorMichael Brown <mcb30@ipxe.org>2014-03-25 16:09:16 +0000
committerMichael Brown <mcb30@ipxe.org>2014-03-25 16:30:43 +0000
commite1ebc50f81eb1ad24218a5e69d42565a9d8cc035 (patch)
tree4ccc865359dd1f65e7382e663a80e90d7b0db3b6 /src/include/ipxe/x509.h
parent01fa7efa38060c010103d444b47a2cd3ff684f82 (diff)
downloadipxe-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.h2
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;
};