OSDN Git Service

Attempt to unbreak windows builds broken by commit 754baa2.
authorAndrew Dunstan <andrew@dunslane.net>
Wed, 30 Mar 2011 20:43:31 +0000 (16:43 -0400)
committerAndrew Dunstan <andrew@dunslane.net>
Wed, 30 Mar 2011 20:43:31 +0000 (16:43 -0400)
src/backend/libpq/pqcomm.c

index 724d3ae..3232e64 100644 (file)
@@ -663,7 +663,7 @@ StreamConnection(pgsocket server_fd, Port *port)
                 * This is a Win32 socket optimization.  The ideal size is 32k.
                 * http://support.microsoft.com/kb/823764/EN-US/
                 */
-               on = PQ_BUFFER_SIZE * 4;
+               on = PQ_SEND_BUFFER_SIZE * 4;
                if (setsockopt(port->sock, SOL_SOCKET, SO_SNDBUF, (char *) &on,
                                           sizeof(on)) < 0)
                {