diff options
author | msvensson@pilot.blaudden <> | 2007-04-11 22:08:00 +0200 |
---|---|---|
committer | msvensson@pilot.blaudden <> | 2007-04-11 22:08:00 +0200 |
commit | 4774c40089be40f70620d799d2578ea88d1c324b (patch) | |
tree | 0354d286782236689632c88acc5bf22d96be0222 /vio/viosslfactories.c | |
parent | 2218fafa1f8835c79935a5ea24d64f055414e88f (diff) | |
parent | d631f1197250ceb7e874cb6aacd1c8cd71936756 (diff) | |
download | mariadb-git-4774c40089be40f70620d799d2578ea88d1c324b.tar.gz |
Merge pilot.blaudden:/home/msvensson/mysql/mysql-5.0-maint
into pilot.blaudden:/home/msvensson/mysql/mysql-5.1-maint
Diffstat (limited to 'vio/viosslfactories.c')
-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 d318f1b0122..d26d4147c9f 100644 --- a/vio/viosslfactories.c +++ b/vio/viosslfactories.c @@ -257,8 +257,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(); |