diff options
author | msvensson@neptunus.(none) <> | 2005-09-01 11:46:43 +0200 |
---|---|---|
committer | msvensson@neptunus.(none) <> | 2005-09-01 11:46:43 +0200 |
commit | 8c0f7f82d92cbc345dcf8209c8b8bf47f010a590 (patch) | |
tree | 4daf5317650035bf1bbdfc42f168595d88bc9d54 /vio/viosslfactories.c | |
parent | f34398ba65d41528b1f4b0c94187f968d1131926 (diff) | |
download | mariadb-git-8c0f7f82d92cbc345dcf8209c8b8bf47f010a590.tar.gz |
Bug #11286 yassl incompatible with "load data infile"
- Make sure that mysqltest always uses ssl when connecting to the server.
- Pass a i32-bit int variable as argument to FIONREAD ioctl.
Diffstat (limited to 'vio/viosslfactories.c')
-rw-r--r-- | vio/viosslfactories.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/vio/viosslfactories.c b/vio/viosslfactories.c index 44a077c33fc..766d835d2c0 100644 --- a/vio/viosslfactories.c +++ b/vio/viosslfactories.c @@ -219,9 +219,6 @@ new_VioSSLConnectorFd(const char* key_file, int result; DH *dh; DBUG_ENTER("new_VioSSLConnectorFd"); - DBUG_PRINT("enter", - ("key_file: %s, cert_file: %s, ca_path: %s, ca_file: %s, cipher: %s", - key_file, cert_file, ca_path, ca_file, cipher)); if (!(ptr=((struct st_VioSSLConnectorFd*) my_malloc(sizeof(struct st_VioSSLConnectorFd),MYF(0))))) @@ -314,9 +311,6 @@ new_VioSSLAcceptorFd(const char *key_file, int result; DH *dh; DBUG_ENTER("new_VioSSLAcceptorFd"); - DBUG_PRINT("enter", - ("key_file: %s, cert_file: %s, ca_path: %s, ca_file: %s, cipher: %s", - key_file, cert_file, ca_path, ca_file, cipher)); ptr= ((struct st_VioSSLAcceptorFd*) my_malloc(sizeof(struct st_VioSSLAcceptorFd),MYF(0))); |