Commit 840deabf authored by Bruce Momjian's avatar Bruce Momjian

More connection timeout cleanups.

parent 4e723e67
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.195 2002/08/27 14:49:52 momjian Exp $ * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.196 2002/08/27 15:02:50 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -1078,7 +1078,7 @@ connectDBComplete(PGconn *conn) ...@@ -1078,7 +1078,7 @@ connectDBComplete(PGconn *conn)
rp = &remains; rp = &remains;
} }
while (rp == NULL || remains.tv_sec > 0 || (remains.tv_sec == 0 && remains.tv_usec > 0)) while (rp == NULL || remains.tv_sec > 0 || remains.tv_usec > 0)
{ {
/* /*
* If connecting timeout is set, get current time. * If connecting timeout is set, get current time.
...@@ -1111,7 +1111,7 @@ connectDBComplete(PGconn *conn) ...@@ -1111,7 +1111,7 @@ connectDBComplete(PGconn *conn)
break; break;
case PGRES_POLLING_WRITING: case PGRES_POLLING_WRITING:
if (pqWaitTimed(0, 1, conn, rp)) if (pqWaitTimed(0, 1, conn, rp))
{ {
conn->status = CONNECTION_BAD; conn->status = CONNECTION_BAD;
return 0; return 0;
...@@ -1347,7 +1347,7 @@ keep_going: /* We will come back to here until there ...@@ -1347,7 +1347,7 @@ keep_going: /* We will come back to here until there
if (pqGetc(&beresp, conn)) if (pqGetc(&beresp, conn))
{ {
/* We'll come back when there are more data */ /* We'll come back when there is more data */
return PGRES_POLLING_READING; return PGRES_POLLING_READING;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment