andrey                                   Tue, 15 Dec 2009 17:39:30 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=292180

Log:
remove duplicated code

Changed paths:
    U   php/php-src/branches/PHP_5_3/ext/mysqlnd/mysqlnd.c
    U   php/php-src/trunk/ext/mysqlnd/mysqlnd.c

Modified: php/php-src/branches/PHP_5_3/ext/mysqlnd/mysqlnd.c
===================================================================
--- php/php-src/branches/PHP_5_3/ext/mysqlnd/mysqlnd.c  2009-12-15 17:33:06 UTC 
(rev 292179)
+++ php/php-src/branches/PHP_5_3/ext/mysqlnd/mysqlnd.c  2009-12-15 17:39:30 UTC 
(rev 292180)
@@ -677,14 +677,8 @@

                mysqlnd_local_infile_default(conn);
                {
-                       unsigned int buf_size;
-                       buf_size = MYSQLND_G(net_read_buffer_size); /* this is 
long, cast to unsigned int*/
-                       conn->m->set_client_option(conn, 
MYSQLND_OPT_NET_READ_BUFFER_SIZE,
-                                                                               
(char *)&buf_size TSRMLS_CC);
-
-                       buf_size = MYSQLND_G(net_cmd_buffer_size); /* this is 
long, cast to unsigned int*/
-                       conn->m->set_client_option(conn, 
MYSQLND_OPT_NET_CMD_BUFFER_SIZE,
-                                                                               
(char *)&buf_size TSRMLS_CC);
+                       unsigned int buf_size = MYSQLND_G(net_cmd_buffer_size); 
/* this is long, cast to unsigned int*/
+                       conn->m->set_client_option(conn, 
MYSQLND_OPT_NET_CMD_BUFFER_SIZE, (char *)&buf_size TSRMLS_CC);
                }

                MYSQLND_INC_CONN_STATISTIC_W_VALUE2(&conn->stats, 
STAT_CONNECT_SUCCESS, 1, STAT_OPENED_CONNECTIONS, 1);

Modified: php/php-src/trunk/ext/mysqlnd/mysqlnd.c
===================================================================
--- php/php-src/trunk/ext/mysqlnd/mysqlnd.c     2009-12-15 17:33:06 UTC (rev 
292179)
+++ php/php-src/trunk/ext/mysqlnd/mysqlnd.c     2009-12-15 17:39:30 UTC (rev 
292180)
@@ -677,14 +677,8 @@

                mysqlnd_local_infile_default(conn);
                {
-                       unsigned int buf_size;
-                       buf_size = MYSQLND_G(net_read_buffer_size); /* this is 
long, cast to unsigned int*/
-                       conn->m->set_client_option(conn, 
MYSQLND_OPT_NET_READ_BUFFER_SIZE,
-                                                                               
(char *)&buf_size TSRMLS_CC);
-
-                       buf_size = MYSQLND_G(net_cmd_buffer_size); /* this is 
long, cast to unsigned int*/
-                       conn->m->set_client_option(conn, 
MYSQLND_OPT_NET_CMD_BUFFER_SIZE,
-                                                                               
(char *)&buf_size TSRMLS_CC);
+                       unsigned int buf_size = MYSQLND_G(net_cmd_buffer_size); 
/* this is long, cast to unsigned int*/
+                       conn->m->set_client_option(conn, 
MYSQLND_OPT_NET_CMD_BUFFER_SIZE, (char *)&buf_size TSRMLS_CC);
                }

                MYSQLND_INC_CONN_STATISTIC_W_VALUE2(&conn->stats, 
STAT_CONNECT_SUCCESS, 1, STAT_OPENED_CONNECTIONS, 1);

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to