diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2001-02-24 02:04:51 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2001-02-24 02:04:51 +0000 |
commit | f1e0044ba3919e307de3b3842909eb26381cbadf (patch) | |
tree | 333aa43ad44f33ad817af9ef8bf9b18a344de838 /src | |
parent | 2b0f8ae0095575beead053d93266f30f6ffb7f14 (diff) | |
download | postgresql-f1e0044ba3919e307de3b3842909eb26381cbadf.tar.gz postgresql-f1e0044ba3919e307de3b3842909eb26381cbadf.zip |
When under postmaster, bogus arguments should cause proc_exit(0) not
proc_exit(1). Unless you think a system-wide restart is an appropriate
response to bogus PGOPTIONS, that is.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/tcop/postgres.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c index fbee4470c98..da09437a8ca 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.207 2001/02/18 04:28:31 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.208 2001/02/24 02:04:51 tgl Exp $ * * NOTES * this is the "main" module of the postgres backend and @@ -1537,7 +1537,7 @@ PostgresMain(int argc, char *argv[], int real_argc, char *real_argv[], const cha if (errs || argc != optind || DBName == NULL) { fprintf(stderr, "%s: invalid command line arguments\nTry -? for help.\n", argv[0]); - proc_exit(1); + proc_exit(0); /* not 1, that causes system-wide restart... */ } pq_init(); /* initialize libpq at backend startup */ whereToSendOutput = Remote; @@ -1680,7 +1680,7 @@ PostgresMain(int argc, char *argv[], int real_argc, char *real_argv[], const cha if (!IsUnderPostmaster) { puts("\nPOSTGRES backend interactive interface "); - puts("$Revision: 1.207 $ $Date: 2001/02/18 04:28:31 $\n"); + puts("$Revision: 1.208 $ $Date: 2001/02/24 02:04:51 $\n"); } /* |