Commit cacaaed6 authored by Marc G. Fournier's avatar Marc G. Fournier

A couple of cleanups from Scott Harrison <Scott_Harrison@next.com>

parent 94893bb9
# include <libc.h>
# include <sys/ioctl.h> # include <sys/ioctl.h>
# if defined(__STRICT_ANSI__) # if defined(__STRICT_ANSI__)
# define isascii(c) ((unsigned)(c)<=0177) # define isascii(c) ((unsigned)(c)<=0177)
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.28 1997/04/02 18:26:25 scrappy Exp $ * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.29 1997/04/15 19:08:13 scrappy Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -313,6 +313,7 @@ PQsetdb(const char *pghost, const char* pgport, const char* pgoptions, const cha ...@@ -313,6 +313,7 @@ PQsetdb(const char *pghost, const char* pgport, const char* pgoptions, const cha
fprintf(stderr, fprintf(stderr,
"FATAL: PQsetdb() -- unable to allocate memory for a PGconn"); "FATAL: PQsetdb() -- unable to allocate memory for a PGconn");
else { else {
conn->lobjfuncs = (PGlobjfuncs *) NULL;
conn->Pfout = NULL; conn->Pfout = NULL;
conn->Pfin = NULL; conn->Pfin = NULL;
conn->Pfdebug = NULL; conn->Pfdebug = NULL;
......
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