diff options
author | Ben Laurie <ben@links.org> | 2014-06-29 22:05:23 +0200 |
---|---|---|
committer | Ben Laurie <ben@links.org> | 2014-06-29 22:05:23 +0200 |
commit | 8892ce77143fb01f27354dc63489e43eb7953b03 (patch) | |
tree | c307996b0f304fe2ec36aeaae888936f27c9c84c /ssl/ssl.h | |
parent | Merge branch 'master' of git.openssl.org:openssl (diff) | |
download | openssl-8892ce77143fb01f27354dc63489e43eb7953b03.tar.xz openssl-8892ce77143fb01f27354dc63489e43eb7953b03.zip |
Constification - mostly originally from Chromium.
Diffstat (limited to 'ssl/ssl.h')
-rw-r--r-- | ssl/ssl.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -545,7 +545,7 @@ struct ssl_method_st const SSL_CIPHER *(*get_cipher)(unsigned ncipher); const struct ssl_method_st *(*get_ssl_method)(int version); long (*get_timeout)(void); - struct ssl3_enc_method *ssl3_enc; /* Extra SSLv3/TLS stuff */ + const struct ssl3_enc_method *ssl3_enc; /* Extra SSLv3/TLS stuff */ int (*ssl_version)(void); long (*ssl_callback_ctrl)(SSL *s, int cb_id, void (*fp)(void)); long (*ssl_ctx_callback_ctrl)(SSL_CTX *s, int cb_id, void (*fp)(void)); |