Suppress timeout in SSL connections.
authorHiroshi Inoue <inoue@tpf.co.jp>
Fri, 27 Nov 2009 14:33:24 +0000 (14:33 +0000)
committerHiroshi Inoue <inoue@tpf.co.jp>
Fri, 27 Nov 2009 14:33:24 +0000 (14:33 +0000)
socket.c
version.h

index b3c73c2466c4a0a23c69382aa9b7ea5febbb3f97..2e3e1cc7fbaa17d114b0414bf11ce4a1ea823cab 100644 (file)
--- a/socket.c
+++ b/socket.c
@@ -467,7 +467,7 @@ static int SOCK_wait_for_ready(SocketClass *sock, BOOL output, int retry_count)
    int ret, gerrno;
    fd_set  fds, except_fds;
    struct  timeval tm;
-   BOOL    no_timeout = FALSE;
+   BOOL    no_timeout = TRUE;
 
    if (0 == retry_count)
        no_timeout = FALSE;
index 1fa49c91404346ffcb3f41b278f668a4a9346c07..55250173ceb76a44d6ae8d4ca84536eb14839653 100644 (file)
--- a/version.h
+++ b/version.h
@@ -12,6 +12,6 @@
 #define POSTGRESDRIVERVERSION      "08.04.0101"
 #define POSTGRES_RESOURCE_VERSION  "08.04.0101\0"
 #define PG_DRVFILE_VERSION     8,4,01,01
-#define PG_BUILD_VERSION       "200911180003"
+#define PG_BUILD_VERSION       "200911240001"
 
 #endif