diff options
author | Sergei Golubchik <serg@mariadb.org> | 2017-07-19 19:46:07 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2017-07-20 20:13:28 +0200 |
commit | da2a838628796453c6ab93d51eca9e5aae45791d (patch) | |
tree | e9e0c52cdea910774cfcdd4f1c72980be340ed0d /sql-common | |
parent | 2f07709aed863ea1852a78a0d6ab718e49df8cca (diff) | |
download | mariadb-git-da2a838628796453c6ab93d51eca9e5aae45791d.tar.gz |
MDEV-12824 GCC 7 warning: this statement may fall through [-Wimplicit-fallthrough=]
Diffstat (limited to 'sql-common')
-rw-r--r-- | sql-common/client.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql-common/client.c b/sql-common/client.c index 6c1627ecb71..ca9929be77e 100644 --- a/sql-common/client.c +++ b/sql-common/client.c @@ -1148,6 +1148,7 @@ void mysql_read_default_options(struct st_mysql_options *options, break; case OPT_pipe: options->protocol = MYSQL_PROTOCOL_PIPE; + break; case OPT_connect_timeout: case OPT_timeout: if (opt_arg) |