summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorRob Percival <robpercival@google.com>2016-03-08 19:20:22 +0000
committerRich Salz <rsalz@openssl.org>2016-03-09 11:34:48 -0500
commiteac84e8127154fc4c19d1602e3f1df985ed77eff (patch)
tree56a3fb6c2febb787f6abd488b7ff9c11e6cfb538 /include
parent14db9bbd710ac8aaaee89280e9b5ffb5afedb712 (diff)
Makes STACK_OF(SCT)* parameter of i2d_SCT_LIST const
Reviewed-by: Emilia Käsper <emilia@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'include')
-rw-r--r--include/openssl/ct.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/openssl/ct.h b/include/openssl/ct.h
index 98b2231400..7ac8887519 100644
--- a/include/openssl/ct.h
+++ b/include/openssl/ct.h
@@ -414,7 +414,7 @@ STACK_OF(SCT) *o2i_SCT_LIST(STACK_OF(SCT) **a, const unsigned char **pp,
* Returns < 0 on error, >= 0 indicating bytes written (or would have been)
* on success.
*/
-__owur int i2d_SCT_LIST(STACK_OF(SCT) *a, unsigned char **pp);
+__owur int i2d_SCT_LIST(const STACK_OF(SCT) *a, unsigned char **pp);
/*
* Parses an SCT list in DER format and returns it.