diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2009-04-28 09:40:26 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2009-04-28 09:40:26 +0000 |
commit | 7dc4eb7a9bf4e39165a17c5f19615b7f4123a792 (patch) | |
tree | bfab3924c475cd75dee0a461624441ebbc05730f /ACE/ace/SSL/SSL_Context.cpp | |
parent | ad682a090b34f250428a3a3df1b8c94c16786733 (diff) | |
download | ATCD-7dc4eb7a9bf4e39165a17c5f19615b7f4123a792.tar.gz |
Tue Apr 28 09:39:12 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/SSL/SSL_Context.cpp (set_mode):
Fix compile error with OpenSSL 1.0 beta 2. Thanks to
Jules Colding <colding at 42tools dot com> for reporting this
Diffstat (limited to 'ACE/ace/SSL/SSL_Context.cpp')
-rw-r--r-- | ACE/ace/SSL/SSL_Context.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ACE/ace/SSL/SSL_Context.cpp b/ACE/ace/SSL/SSL_Context.cpp index 2d71688c3c2..acee2f40528 100644 --- a/ACE/ace/SSL/SSL_Context.cpp +++ b/ACE/ace/SSL/SSL_Context.cpp @@ -236,7 +236,7 @@ ACE_SSL_Context::set_mode (int mode) if (this->context_ != 0) return -1; - SSL_METHOD *method = 0; + const SSL_METHOD *method = 0; switch (mode) { |