diff options
author | msvensson@pilot.blaudden <> | 2007-04-11 21:03:29 +0200 |
---|---|---|
committer | msvensson@pilot.blaudden <> | 2007-04-11 21:03:29 +0200 |
commit | 900e0d685dc78289da19d62ba687ccfe23a53699 (patch) | |
tree | 3e16a1d16742f09632a13ec2babc4a1a10e0a885 /vio | |
parent | e81cb86952ab366ae20aa8186041dde3be66d166 (diff) | |
parent | 82b454aa28e46efa9249ee51784b654fbd0a9225 (diff) | |
download | mariadb-git-900e0d685dc78289da19d62ba687ccfe23a53699.tar.gz |
Merge pilot.blaudden:/home/msvensson/mysql/bug21611/my50-bug21611
into pilot.blaudden:/home/msvensson/mysql/mysql-5.0-maint
Diffstat (limited to 'vio')
-rw-r--r-- | vio/viosslfactories.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/vio/viosslfactories.c b/vio/viosslfactories.c index a12a45df648..4e3092b3b39 100644 --- a/vio/viosslfactories.c +++ b/vio/viosslfactories.c @@ -249,8 +249,13 @@ new_VioSSLFd(const char *key_file, const char *cert_file, DBUG_RETURN(0); } - /* Set the ciphers that can be used */ - if (cipher && SSL_CTX_set_cipher_list(ssl_fd->ssl_context, cipher)) + /* + Set the ciphers that can be used + NOTE: SSL_CTX_set_cipher_list will return 0 if + none of the provided ciphers could be selected + */ + if (cipher && + SSL_CTX_set_cipher_list(ssl_fd->ssl_context, cipher) == 0) { DBUG_PRINT("error", ("failed to set ciphers to use")); report_errors(); |