summaryrefslogtreecommitdiffstats
path: root/src/include/ipxe
diff options
context:
space:
mode:
authorMichael Brown2012-03-10 01:25:03 +0100
committerMichael Brown2012-03-13 16:57:34 +0100
commitb63bcd73a0e83fe74d530d100248c87579956985 (patch)
tree0c2814ad2972ba18143bdeaaf799e991e76bad30 /src/include/ipxe
parent[crypto] Upgrade AES and RSA code to upstream axTLS version 1.4.5 (diff)
downloadipxe-b63bcd73a0e83fe74d530d100248c87579956985.tar.gz
ipxe-b63bcd73a0e83fe74d530d100248c87579956985.tar.xz
ipxe-b63bcd73a0e83fe74d530d100248c87579956985.zip
[tls] Use const to mark incoming data being processed
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include/ipxe')
-rw-r--r--src/include/ipxe/asn1.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/ipxe/asn1.h b/src/include/ipxe/asn1.h
index 7ac108626..b51267ba3 100644
--- a/src/include/ipxe/asn1.h
+++ b/src/include/ipxe/asn1.h
@@ -23,7 +23,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
*/
struct asn1_cursor {
/** Start of data */
- void *data;
+ const void *data;
/** Length of data */
size_t len;
};