diff options
Diffstat (limited to 'databases/mysql-connector-odbc/files/patch-driver__connect.c')
-rw-r--r-- | databases/mysql-connector-odbc/files/patch-driver__connect.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/databases/mysql-connector-odbc/files/patch-driver__connect.c b/databases/mysql-connector-odbc/files/patch-driver__connect.c new file mode 100644 index 000000000000..d0b493d5e674 --- /dev/null +++ b/databases/mysql-connector-odbc/files/patch-driver__connect.c @@ -0,0 +1,14 @@ +--- driver/connect.c.orig Sun Oct 9 22:33:40 2005 ++++ driver/connect.c Thu Oct 27 16:44:37 2005 +@@ -141,8 +141,10 @@ + client_flag |= CLIENT_COMPRESS; + if (option_flag & FLAG_IGNORE_SPACE) + client_flag |= CLIENT_IGNORE_SPACE; +- ++ ++#ifdef CLIENT_MULTI_RESULTS + client_flag |= CLIENT_MULTI_RESULTS; ++#endif + #ifdef __WIN__ + if (option_flag & FLAG_NAMED_PIPE) + mysql_options(mysql,MYSQL_OPT_NAMED_PIPE,NullS); |