diff options
author | konstantin@oak.local <> | 2003-11-28 02:50:58 +0300 |
---|---|---|
committer | konstantin@oak.local <> | 2003-11-28 02:50:58 +0300 |
commit | 38b140fb0976872876cc883c894b95540304a7ec (patch) | |
tree | 7e2045aab89953a7e66bce3f0fae1d6539139a08 /sql-common | |
parent | 4014c4eaeb42112964a77d35228c5e38e1da2b08 (diff) | |
download | mariadb-git-38b140fb0976872876cc883c894b95540304a7ec.tar.gz |
fix:
2 forgotten 'break;' statements added
Diffstat (limited to 'sql-common')
-rw-r--r-- | sql-common/client.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql-common/client.c b/sql-common/client.c index 878a8beacba..6261df944d6 100644 --- a/sql-common/client.c +++ b/sql-common/client.c @@ -2535,6 +2535,7 @@ mysql_options(MYSQL *mysql,enum mysql_option option, const char *arg) my_free(mysql->options.shared_memory_base_name,MYF(MY_ALLOW_ZERO_PTR)); mysql->options.shared_memory_base_name=my_strdup(arg,MYF(MY_WME)); #endif + break; case MYSQL_OPT_USE_REMOTE_CONNECTION: case MYSQL_OPT_USE_EMBEDDED_CONNECTION: case MYSQL_OPT_GUESS_CONNECTION: @@ -2542,6 +2543,7 @@ mysql_options(MYSQL *mysql,enum mysql_option option, const char *arg) break; case MYSQL_SET_CLIENT_IP: mysql->options.client_ip= my_strdup(arg, MYF(MY_WME)); + break; default: DBUG_RETURN(1); } |