diff options
author | gluh@gluh.(none) <> | 2002-11-05 12:05:58 +0400 |
---|---|---|
committer | gluh@gluh.(none) <> | 2002-11-05 12:05:58 +0400 |
commit | 7bf903ea1044ad3776a6e688d437a21efaa84e18 (patch) | |
tree | e27e1d7b216164535ab3100467fa0dea7d08a146 /vio/viosslfactories.c | |
parent | 808d87f810e3b4016c12c63109f3a5d42e337d7b (diff) | |
download | mariadb-git-7bf903ea1044ad3776a6e688d437a21efaa84e18.tar.gz |
Error code for ssl connection
Fix bug when server hang(with SSL, with modified libmysql)
Add options master-ssl-capath and master-ssl-cipher
Add some error checking(SSL)
Diffstat (limited to 'vio/viosslfactories.c')
-rw-r--r-- | vio/viosslfactories.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/vio/viosslfactories.c b/vio/viosslfactories.c index 9e7a1475951..31bc457d1ae 100644 --- a/vio/viosslfactories.c +++ b/vio/viosslfactories.c @@ -93,7 +93,10 @@ vio_set_cert_stuff(SSL_CTX *ctx, const char *cert_file, const char *key_file) { DBUG_PRINT("error",("unable to get certificate from '%s'\n",cert_file)); /* FIX stderr */ + fprintf(stderr,"Error when connection to server using SSL:"); ERR_print_errors_fp(stderr); + fprintf(stderr,"Unable to get certificate from '%s'\n", cert_file); + fflush(stderr); DBUG_RETURN(0); } if (key_file == NULL) @@ -103,7 +106,10 @@ vio_set_cert_stuff(SSL_CTX *ctx, const char *cert_file, const char *key_file) { DBUG_PRINT("error", ("unable to get private key from '%s'\n",key_file)); /* FIX stderr */ + fprintf(stderr,"Error when connection to server using SSL:"); ERR_print_errors_fp(stderr); + fprintf(stderr,"Unable to get private key from '%s'\n", cert_file); + fflush(stderr); DBUG_RETURN(0); } |