summaryrefslogtreecommitdiff
path: root/sql-common
diff options
context:
space:
mode:
authorunknown <konstantin@oak.local>2003-11-28 02:50:58 +0300
committerunknown <konstantin@oak.local>2003-11-28 02:50:58 +0300
commit03092d0c24067bf97359436e49e6cce7ca0e2803 (patch)
tree7e2045aab89953a7e66bce3f0fae1d6539139a08 /sql-common
parent94387d4be3a066bcc5a8b9a495dd5b1ef4e75513 (diff)
downloadmariadb-git-03092d0c24067bf97359436e49e6cce7ca0e2803.tar.gz
fix:
2 forgotten 'break;' statements added
Diffstat (limited to 'sql-common')
-rw-r--r--sql-common/client.c2
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);
}