diff options
Diffstat (limited to 'src/backend/tcop/postgres.c')
-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 d823dbb5a65..7e392bd30f3 100644 --- a/src/backend/tcop/postgres.c +++ b/src/backend/tcop/postgres.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.61 1998/01/13 04:04:36 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.62 1998/01/25 05:14:18 momjian Exp $ * * NOTES * this is the "main" module of the postgres backend and @@ -886,7 +886,7 @@ PostgresMain(int argc, char *argv[]) * ------------------- */ - MasterPid = getpid(); + MyProcPid = getpid(); /* ---------------- * parse command line arguments @@ -1381,7 +1381,7 @@ PostgresMain(int argc, char *argv[]) if (IsUnderPostmaster == false) { puts("\nPOSTGRES backend interactive interface"); - puts("$Revision: 1.61 $ $Date: 1998/01/13 04:04:36 $"); + puts("$Revision: 1.62 $ $Date: 1998/01/25 05:14:18 $"); } /* ---------------- |