diff options
| author | Michael Brown | 2014-03-25 17:09:16 +0100 |
|---|---|---|
| committer | Michael Brown | 2014-03-25 17:30:43 +0100 |
| commit | e1ebc50f81eb1ad24218a5e69d42565a9d8cc035 (patch) | |
| tree | 4ccc865359dd1f65e7382e663a80e90d7b0db3b6 /src/include | |
| parent | [crypto] Remove dynamically-allocated storage for certificate name (diff) | |
| download | ipxe-e1ebc50f81eb1ad24218a5e69d42565a9d8cc035.tar.gz ipxe-e1ebc50f81eb1ad24218a5e69d42565a9d8cc035.tar.xz ipxe-e1ebc50f81eb1ad24218a5e69d42565a9d8cc035.zip | |
[crypto] Remove dynamically-allocated storage for certificate OCSP URI
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include')
| -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; }; |
