diff options
author | Rob Percival <robpercival@google.com> | 2016-10-19 15:42:05 +0100 |
---|---|---|
committer | Rob Percival <robpercival@google.com> | 2016-11-16 13:54:17 +0000 |
commit | e1940e9f7a73bf3a560fbe3550a9b69a612118ec (patch) | |
tree | c12ceb27469f52c8b408aad79f990acc2e886d78 /crypto/ct/ct_oct.c | |
parent | 765731a88899771989a53c72259cacd1c658bb3f (diff) | |
download | openssl-new-e1940e9f7a73bf3a560fbe3550a9b69a612118ec.tar.gz |
Move SCT_LIST_free definition into a more logical place
This reflects its position in include/openssl/ct.h.
Reviewed-by: Tim Hudson <tjh@openssl.org>
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/1548)
Diffstat (limited to 'crypto/ct/ct_oct.c')
-rw-r--r-- | crypto/ct/ct_oct.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/crypto/ct/ct_oct.c b/crypto/ct/ct_oct.c index cacc3bd2b4..d3edd39f5d 100644 --- a/crypto/ct/ct_oct.c +++ b/crypto/ct/ct_oct.c @@ -254,11 +254,6 @@ err: return -1; } -void SCT_LIST_free(STACK_OF(SCT) *a) -{ - sk_SCT_pop_free(a, SCT_free); -} - STACK_OF(SCT) *o2i_SCT_LIST(STACK_OF(SCT) **a, const unsigned char **pp, size_t len) { |