summaryrefslogtreecommitdiff
path: root/src/interfaces/libpq/fe-connect.c
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-08-19 19:28:17 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-08-19 19:28:17 +0000
commit1054d35a9858333a13c748bff27d2be1c8aaf62a (patch)
treed061e5e79a1c23f4e8e96d6b4d474a87bcbcc5e8 /src/interfaces/libpq/fe-connect.c
parent394f7990a00f8c7100ca699c92ca7a66583f74f6 (diff)
Missed an else from Bryan's patch...
Diffstat (limited to 'src/interfaces/libpq/fe-connect.c')
-rw-r--r--src/interfaces/libpq/fe-connect.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/libpq/fe-connect.c b/src/interfaces/libpq/fe-connect.c
index d6455d94008..c5977178454 100644
--- a/src/interfaces/libpq/fe-connect.c
+++ b/src/interfaces/libpq/fe-connect.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.4.2.2 1996/08/19 13:40:26 scrappy Exp $
+ * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.4.2.3 1996/08/19 19:28:17 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
@@ -75,7 +75,7 @@ PQsetdb(char *pghost, char* pgport, char* pgoptions, char* pgtty, char* dbName)
fprintf(stderr,
"FATAL: PQsetdb() -- unable to allocate memory for a PGconn");
return (PGconn*)NULL;
- }
+ } else {
conn->Pfout = NULL;
conn->Pfin = NULL;
conn->Pfdebug = NULL;