summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorRob Percival <robpercival@google.com>2016-03-08 18:55:55 +0000
committerRich Salz <rsalz@openssl.org>2016-03-09 11:34:48 -0500
commit12d2d2818566561cbdda82a6ad1b3aab687fc020 (patch)
tree97df17b66d626bd0d7e26d6313078cd8d3850c42 /include
parent98af73106444d23982e759e0d3684700a97092d8 (diff)
Makes CTLOG_STORE_get0_log_by_id return const CTLOG*
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.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/openssl/ct.h b/include/openssl/ct.h
index fa5175f29d..ccbb805304 100644
--- a/include/openssl/ct.h
+++ b/include/openssl/ct.h
@@ -539,9 +539,9 @@ void CTLOG_STORE_free(CTLOG_STORE *store);
* Finds a CT log in the store based on its log ID.
* Returns the CT log, or NULL if no match is found.
*/
-CTLOG *CTLOG_STORE_get0_log_by_id(const CTLOG_STORE *store,
- const uint8_t *log_id,
- size_t log_id_len);
+const CTLOG *CTLOG_STORE_get0_log_by_id(const CTLOG_STORE *store,
+ const uint8_t *log_id,
+ size_t log_id_len);
/*
* Loads a CT log list into a |store| from a |file|.