summaryrefslogtreecommitdiff
path: root/sql-common
diff options
context:
space:
mode:
authormsvensson@pilot.blaudden <>2007-05-24 20:51:37 +0200
committermsvensson@pilot.blaudden <>2007-05-24 20:51:37 +0200
commit374de2c7cbbd970b6f502b2d8f807496daa77a1c (patch)
tree2db80e621915e71c8554c6396c2ba02df01473a2 /sql-common
parenta99fe7f3d6f8f02e89b033e3f0854d47e37755dc (diff)
parent93b1fe65d82661f29b1f6e1ad341eb0f68f4c93c (diff)
downloadmariadb-git-374de2c7cbbd970b6f502b2d8f807496daa77a1c.tar.gz
Merge pilot.blaudden:/home/msvensson/mysql/bug26664/my50-bug26664
into pilot.blaudden:/home/msvensson/mysql/mysql-5.0-maint
Diffstat (limited to 'sql-common')
-rw-r--r--sql-common/client.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/sql-common/client.c b/sql-common/client.c
index 3342db4bcfe..40512da0492 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;