diff options
author | Marc G. Fournier <scrappy@hub.org> | 1999-02-21 03:49:55 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1999-02-21 03:49:55 +0000 |
commit | 8c3e8a8a0e432b709ad45b452612f744bacf1514 (patch) | |
tree | f6dd8c40d09730dd5a44cd1ac19d4c50b002b47c /src/interfaces/libpq/fe-connect.c | |
parent | 1efa3f42280fce080e47fc4491a809240cbe464a (diff) | |
download | postgresql-8c3e8a8a0e432b709ad45b452612f744bacf1514.tar.gz postgresql-8c3e8a8a0e432b709ad45b452612f744bacf1514.zip |
From: Tatsuo Ishii <t-ishii@sra.co.jp>
Ok. I made patches replacing all of "#if FALSE" or "#if 0" to "#ifdef
NOT_USED" for current. I have tested these patches in that the
postgres binaries are identical.
Diffstat (limited to 'src/interfaces/libpq/fe-connect.c')
-rw-r--r-- | src/interfaces/libpq/fe-connect.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/libpq/fe-connect.c b/src/interfaces/libpq/fe-connect.c index 79b10aec049..83480c842a4 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.93 1999/02/18 06:01:00 momjian Exp $ + * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.94 1999/02/21 03:49:52 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -755,7 +755,7 @@ connectDB(PGconn *conn) * send an empty query to test for startup. */ -#if 0 +#ifdef NOT_USED /* * Send a blank query to make sure everything works; in particular, |