From 89decf6aa9110638a94bfae90010450b7b60e5de Mon Sep 17 00:00:00 2001 From: "jimw@mysql.com" <> Date: Wed, 31 Aug 2005 15:04:25 -0700 Subject: Fix shared memory connection handling on Windows. (Bug #12723) --- vio/viosocket.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vio/viosocket.c b/vio/viosocket.c index c7561890ead..a73a0780bfa 100644 --- a/vio/viosocket.c +++ b/vio/viosocket.c @@ -99,7 +99,7 @@ int vio_blocking(Vio * vio __attribute__((unused)), my_bool set_blocking_mode, #endif /* !defined(NO_FCNTL_NONBLOCK) */ #else /* !defined(__WIN__) && !defined(__EMX__) */ #ifndef __EMX__ - if (vio->type != VIO_TYPE_NAMEDPIPE) + if (vio->type != VIO_TYPE_NAMEDPIPE && vio->type != VIO_TYPE_SHARED_MEMORY) #endif { ulong arg; -- cgit v1.2.1