Typo.
This commit is contained in:
parent
52a48254c7
commit
8f7de4f04c
3
CHANGES
3
CHANGES
@ -5,6 +5,9 @@
|
|||||||
|
|
||||||
Changes between 0.9.2b and 0.9.3
|
Changes between 0.9.2b and 0.9.3
|
||||||
|
|
||||||
|
*) Fix typo in SSL_[gs]et_options().
|
||||||
|
[Nils Frostberg <nils@medcom.se>]
|
||||||
|
|
||||||
*) Delete various functions and files that belonged to the (now obsolete)
|
*) Delete various functions and files that belonged to the (now obsolete)
|
||||||
old X509V3 handling code.
|
old X509V3 handling code.
|
||||||
[Steve Henson]
|
[Steve Henson]
|
||||||
|
@ -297,9 +297,9 @@ typedef struct ssl_session_st
|
|||||||
#define SSL_CTX_get_options(ctx) \
|
#define SSL_CTX_get_options(ctx) \
|
||||||
SSL_CTX_ctrl(ctx,SSL_CTRL_OPTIONS,0,NULL)
|
SSL_CTX_ctrl(ctx,SSL_CTRL_OPTIONS,0,NULL)
|
||||||
#define SSL_set_options(ssl,op) \
|
#define SSL_set_options(ssl,op) \
|
||||||
SSL_ctrl(ctx,SSL_CTRL_OPTIONS,0,NULL)
|
SSL_ctrl(ssl,SSL_CTRL_OPTIONS,0,NULL)
|
||||||
#define SSL_get_options(ssl) \
|
#define SSL_get_options(ssl) \
|
||||||
SSL_ctrl(ctx,SSL_CTRL_OPTIONS,0,NULL)
|
SSL_ctrl(ssl,SSL_CTRL_OPTIONS,0,NULL)
|
||||||
|
|
||||||
#define SSL_OP_NO_SSLv2 0x01000000L
|
#define SSL_OP_NO_SSLv2 0x01000000L
|
||||||
#define SSL_OP_NO_SSLv3 0x02000000L
|
#define SSL_OP_NO_SSLv3 0x02000000L
|
||||||
|
Loading…
x
Reference in New Issue
Block a user