Update description for PGHOST and unix domain sockets. Add warning for failed connec...
authorBruce Momjian
Thu, 4 Dec 1997 20:32:35 +0000 (20:32 +0000)
committerBruce Momjian
Thu, 4 Dec 1997 20:32:35 +0000 (20:32 +0000)
src/interfaces/libpq/fe-connect.c

index 89bed13ac1b0edf6fcf916267b8d1f3b8d92e0ac..ad0b44f651d30a3e94f797f75d955a3d2000df55 100644 (file)
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *   $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.51 1997/12/04 20:26:09 momjian Exp $
+ *   $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.52 1997/12/04 20:32:35 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -572,7 +572,7 @@ connectDB(PGconn *conn)
    if (connect(port->sock, (struct sockaddr *) & port->raddr, len) < 0)
    {
        (void) sprintf(conn->errorMessage,
-                      "connectDB() failed: Is the postmaster accepting%s connections at '%s' on port '%s'?\n",
+                      "connectDB() failed: Is the postmaster running and accepting%s connections at '%s' on port '%s'?\n",
                       conn->pghost ? " TCP/IP(with -i)" : "",
                       conn->pghost ? conn->pghost : "UNIX Socket",
                       conn->pgport);