Commit 0d767778 authored by Marko Mäkelä's avatar Marko Mäkelä

MDEV-13362: Fix -Wset-but-unused

parent 28fabc86
......@@ -5906,7 +5906,7 @@ void do_connect(struct st_command *command)
int con_port= opt_port;
char *con_options;
char *ssl_cipher __attribute__((unused))= 0;
enum use_ssl con_ssl= USE_SSL_IF_POSSIBLE;
enum use_ssl con_ssl __attribute__((unused))= USE_SSL_IF_POSSIBLE;
my_bool con_compress= 0;
int read_timeout= 0;
int write_timeout= 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment