diff options
author | Xiaoyin Liu <xiaoyinl@users.noreply.github.com> | 2017-07-30 09:06:56 +0200 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2017-07-30 23:40:56 +0200 |
commit | 00f3a013c30736a37c90c47d5a45191eaa3051c7 (patch) | |
tree | dc1d9fe589f3fa0f614dbcb872f874ac55b081c8 | |
parent | make update (diff) | |
download | openssl-00f3a013c30736a37c90c47d5a45191eaa3051c7.tar.xz openssl-00f3a013c30736a37c90c47d5a45191eaa3051c7.zip |
Remove redundant declarations in record_locl.h
This patch removes the prototype of function RECORD_LAYER_set_write_sequence from record_locl.h, since this function is not defined.
Reviewed-by: Tim Hudson <tjh@openssl.org>
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/4051)
-rw-r--r-- | ssl/record/record_locl.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ssl/record/record_locl.h b/ssl/record/record_locl.h index 2b55bece85..fefb0df881 100644 --- a/ssl/record/record_locl.h +++ b/ssl/record/record_locl.h @@ -41,7 +41,6 @@ __owur int ssl3_read_n(SSL *s, size_t n, size_t max, int extend, int clearold, size_t *readbytes); -void RECORD_LAYER_set_write_sequence(RECORD_LAYER *rl, const unsigned char *ws); DTLS1_BITMAP *dtls1_get_bitmap(SSL *s, SSL3_RECORD *rr, unsigned int *is_next_epoch); int dtls1_process_buffered_records(SSL *s); |