From 92a2598f9744881a99f44f119bb0eb6ccde36c6c Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Thu, 10 Jan 2002 01:11:45 +0000 Subject: The result of getopt() should be compared to -1, not EOF, per pgsql-hackers discussion of this date. --- src/backend/tcop/postgres.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/backend/tcop/postgres.c') diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c index 68ae795e6a7..0609e1e9531 100644 --- a/src/backend/tcop/postgres.c +++ b/src/backend/tcop/postgres.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.244 2002/01/01 23:16:22 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.245 2002/01/10 01:11:45 tgl Exp $ * * NOTES * this is the "main" module of the postgres backend and @@ -1165,7 +1165,7 @@ PostgresMain(int argc, char *argv[], const char *username) secure = true; ctx = PGC_POSTMASTER; - while ((flag = getopt(argc, argv, "A:B:c:CD:d:Eef:FiNOPo:p:S:st:v:W:x:-:")) != EOF) + while ((flag = getopt(argc, argv, "A:B:c:CD:d:Eef:FiNOPo:p:S:st:v:W:x:-:")) != -1) switch (flag) { case 'A': @@ -1626,7 +1626,7 @@ PostgresMain(int argc, char *argv[], const char *username) if (!IsUnderPostmaster) { puts("\nPOSTGRES backend interactive interface "); - puts("$Revision: 1.244 $ $Date: 2002/01/01 23:16:22 $\n"); + puts("$Revision: 1.245 $ $Date: 2002/01/10 01:11:45 $\n"); } /* -- cgit v1.2.3