diff options
author | unknown <msvensson@pilot.blaudden> | 2007-05-24 20:43:12 +0200 |
---|---|---|
committer | unknown <msvensson@pilot.blaudden> | 2007-05-24 20:43:12 +0200 |
commit | 71eb1afef15c103ff096104eef22049b8b4b0957 (patch) | |
tree | c8363ff07bf3105b416bf81980b0f9609df81738 /sql-common | |
parent | a27fd67b512bace048a8c9b0cce7faf5cbbd1373 (diff) | |
parent | 945f3c2cc827ca6acc06a1034538f4ec1388ac5b (diff) | |
download | mariadb-git-71eb1afef15c103ff096104eef22049b8b4b0957.tar.gz |
Merge pilot.blaudden:/home/msvensson/mysql/bug26664/my50-bug26664
into pilot.blaudden:/home/msvensson/mysql/bug26664/my51-bug26664
include/mysql_com.h:
Auto merged
include/violite.h:
Auto merged
libmysql/libmysql.c:
Auto merged
server-tools/instance-manager/mysql_connection.cc:
Auto merged
sql-common/client.c:
Auto merged
sql/mysql_priv.h:
Auto merged
sql/net_serv.cc:
Auto merged
sql/set_var.cc:
Auto merged
sql/sql_repl.cc:
Auto merged
vio/viosocket.c:
Auto merged
sql/sql_parse.cc:
Merge 5.0->5.1
Diffstat (limited to 'sql-common')
-rw-r--r-- | sql-common/client.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sql-common/client.c b/sql-common/client.c index 2c09498d8f4..67e77932a5f 100644 --- a/sql-common/client.c +++ b/sql-common/client.c @@ -2047,13 +2047,11 @@ CLI_MYSQL_REAL_CONNECT(MYSQL *mysql,const char *host, const char *user, /* If user set read_timeout, let it override the default */ if (mysql->options.read_timeout) - net->read_timeout= mysql->options.read_timeout; - vio_timeout(net->vio, 0, net->read_timeout); + my_net_set_read_timeout(net, mysql->options.read_timeout); /* If user set write_timeout, let it override the default */ if (mysql->options.write_timeout) - net->write_timeout= mysql->options.write_timeout; - vio_timeout(net->vio, 1, net->write_timeout); + my_net_set_write_timeout(net, mysql->options.write_timeout); if (mysql->options.max_allowed_packet) net->max_packet_size= mysql->options.max_allowed_packet; |