diff options
| author | Michael Brown | 2012-03-10 01:25:03 +0100 |
|---|---|---|
| committer | Michael Brown | 2012-03-13 16:57:34 +0100 |
| commit | b63bcd73a0e83fe74d530d100248c87579956985 (patch) | |
| tree | 0c2814ad2972ba18143bdeaaf799e991e76bad30 /src/include/ipxe/asn1.h | |
| parent | [crypto] Upgrade AES and RSA code to upstream axTLS version 1.4.5 (diff) | |
| download | ipxe-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/asn1.h')
| -rw-r--r-- | src/include/ipxe/asn1.h | 2 |
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; }; |
