summaryrefslogtreecommitdiff
path: root/databases/mysql-connector-odbc/files/patch-driver__connect.c
blob: d0b493d5e674e134576def2d10027b5f67829ec5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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);