aboutsummaryrefslogtreecommitdiff
path: root/src/bin/psql/psql.c
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1999-02-21 03:49:55 +0000
committerMarc G. Fournier <scrappy@hub.org>1999-02-21 03:49:55 +0000
commit8c3e8a8a0e432b709ad45b452612f744bacf1514 (patch)
treef6dd8c40d09730dd5a44cd1ac19d4c50b002b47c /src/bin/psql/psql.c
parent1efa3f42280fce080e47fc4491a809240cbe464a (diff)
downloadpostgresql-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/bin/psql/psql.c')
-rw-r--r--src/bin/psql/psql.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/psql.c b/src/bin/psql/psql.c
index 7d863a5e831..5de5a2a83fb 100644
--- a/src/bin/psql/psql.c
+++ b/src/bin/psql/psql.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.170 1999/02/13 23:20:38 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.171 1999/02/21 03:49:39 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
@@ -2829,7 +2829,7 @@ main(int argc, char **argv)
settings.opt.align = 0;
break;
case 'a':
-#if 0 /* this no longer does anything */
+#ifdef NOT_USED /* this no longer does anything */
fe_setauthsvc(optarg, errbuf);
#endif
break;