From 8f7de4f04cb16528386cb126d28ea3dc0a0c6a10 Mon Sep 17 00:00:00 2001 From: Ben Laurie Date: Wed, 14 Apr 1999 11:13:47 +0000 Subject: [PATCH] Typo. --- CHANGES | 3 +++ ssl/ssl.h | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 8fe8d2943d..b331a7dc66 100644 --- a/CHANGES +++ b/CHANGES @@ -5,6 +5,9 @@ Changes between 0.9.2b and 0.9.3 + *) Fix typo in SSL_[gs]et_options(). + [Nils Frostberg ] + *) Delete various functions and files that belonged to the (now obsolete) old X509V3 handling code. [Steve Henson] diff --git a/ssl/ssl.h b/ssl/ssl.h index 4bb1a2eceb..bea99a7769 100644 --- a/ssl/ssl.h +++ b/ssl/ssl.h @@ -297,9 +297,9 @@ typedef struct ssl_session_st #define SSL_CTX_get_options(ctx) \ SSL_CTX_ctrl(ctx,SSL_CTRL_OPTIONS,0,NULL) #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) \ - 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_SSLv3 0x02000000L -- GitLab