diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-04-02 00:49:28 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-04-02 00:49:28 +0000 |
commit | 1da6eb7fdaa79a93972c290174bd7136672a894f (patch) | |
tree | f678004bfc882908975bfa8fbe7c831ba9935306 /src/interfaces/libpq/fe-connect.c | |
parent | f8a15f632dbdc0d24f8aa2d6a1164ed1b0f6b607 (diff) | |
download | postgresql-1da6eb7fdaa79a93972c290174bd7136672a894f.tar.gz postgresql-1da6eb7fdaa79a93972c290174bd7136672a894f.zip |
Whack getaddrinfo() patch around until it works, more or less, on
machines without IPv6. Or at least it works on HPUX 10.20 ...
Diffstat (limited to 'src/interfaces/libpq/fe-connect.c')
-rw-r--r-- | src/interfaces/libpq/fe-connect.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/interfaces/libpq/fe-connect.c b/src/interfaces/libpq/fe-connect.c index 141c80e2765..3d938031efe 100644 --- a/src/interfaces/libpq/fe-connect.c +++ b/src/interfaces/libpq/fe-connect.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.229 2003/03/29 11:31:51 petere Exp $ + * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.230 2003/04/02 00:49:28 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -881,9 +881,9 @@ connectDBStart(PGconn *conn) * for the *last* alternative, which may not be what users expect * :-(). * - * In either case, we never actually fall out of the loop; the - * only exits are via "break" or "goto connect_errReturn". Thus, - * there is no exit test in the for(). + * Notice we never actually fall out of the loop; the only exits are + * via "break" or "goto connect_errReturn". Thus, there is no exit + * test in the for(). */ for (addr_cur = addrs; ; addr_cur = addr_cur->ai_next) { |