diff options
author | V S Murthy Sidagam <venkata.sidagam@oracle.com> | 2015-04-21 09:24:41 +0530 |
---|---|---|
committer | V S Murthy Sidagam <venkata.sidagam@oracle.com> | 2015-04-21 09:24:41 +0530 |
commit | 6c11fedb5e81bfdcc9e71475d265a4686daa917f (patch) | |
tree | 6e2202dc5e45f3a65b5de06bbd2b224909f9d973 /vio | |
parent | f07d9957994c0c21f36511035215c83653097908 (diff) | |
download | mariadb-git-6c11fedb5e81bfdcc9e71475d265a4686daa917f.tar.gz |
Bug #16861371 SSL_OP_NO_COMPRESSION NOT DEFINED
post push change: fixing valgrind failures
Diffstat (limited to 'vio')
-rw-r--r-- | vio/viossl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vio/viossl.c b/vio/viossl.c index 86bd94260e4..f68e20ff64c 100644 --- a/vio/viossl.c +++ b/vio/viossl.c @@ -188,7 +188,7 @@ static int ssl_do(struct st_VioSSLFd *ptr, Vio *vio, long timeout, n= sk_SSL_COMP_num(ssl_comp_methods); DBUG_PRINT("info", ("Available compression methods:\n")); if (n == 0) - fprintf(stderr, " NONE\n"); + DBUG_PRINT("info", ("NONE\n")); else for (j = 0; j < n; j++) { |