summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Hristov <andrey@php.net>2013-01-09 18:39:59 +0100
committerAndrey Hristov <andrey@php.net>2013-01-09 18:39:59 +0100
commitbcd278ad7f3a8e549a3281600decd897dd7d73ce (patch)
treed7b984fbdb131a86eb78a0eb82267ef3528dbdac
parent6a6ec195acb0a67b8728dd32fad5c82b37b31192 (diff)
downloadphp-git-bcd278ad7f3a8e549a3281600decd897dd7d73ce.tar.gz
fix compilation error after merge
-rw-r--r--ext/mysqlnd/mysqlnd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqlnd/mysqlnd.c b/ext/mysqlnd/mysqlnd.c
index 3483d8692a..db0a111a5c 100644
--- a/ext/mysqlnd/mysqlnd.c
+++ b/ext/mysqlnd/mysqlnd.c
@@ -774,7 +774,7 @@ MYSQLND_METHOD(mysqlnd_conn_data, connect)(MYSQLND_CONN_DATA * conn,
/* we allow load data local infile by default */
mysql_flags |= MYSQLND_CAPABILITIES;
- mysql_flags |= conn->options.flags; /* use the flags from set_client_option() */
+ mysql_flags |= conn->options->flags; /* use the flags from set_client_option() */
if (db) {
mysql_flags |= CLIENT_CONNECT_WITH_DB;