diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-07-27 21:49:55 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-07-27 21:49:55 +0000 |
commit | b556e8200e55261cf41de7ce8be4b38b0a062c2b (patch) | |
tree | 46ee8f2361510e4a530ab78e24275d25c1bc1599 /src/backend/bootstrap/bootstrap.c | |
parent | 606debf26833371b9ea56f297d9ec0d2ada534d5 (diff) |
elog mop-up: bring some straggling fprintf(stderr)'s into the elog world.
Diffstat (limited to 'src/backend/bootstrap/bootstrap.c')
-rw-r--r-- | src/backend/bootstrap/bootstrap.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/backend/bootstrap/bootstrap.c b/src/backend/bootstrap/bootstrap.c index e30e5c513c0..b02fa775ded 100644 --- a/src/backend/bootstrap/bootstrap.c +++ b/src/backend/bootstrap/bootstrap.c @@ -8,7 +8,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.162 2003/07/22 23:30:37 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.163 2003/07/27 21:49:53 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -359,7 +359,7 @@ BootstrapMain(int argc, char *argv[]) gettext("%s does not know where to find the database system data.\n" "You must specify the directory that contains the database system\n" "either by specifying the -D invocation option or by setting the\n" - "PGDATA environment variable.\n\n"), + "PGDATA environment variable.\n"), argv[0]); proc_exit(1); } @@ -414,8 +414,7 @@ BootstrapMain(int argc, char *argv[]) /* * Create lockfile for data directory. */ - if (!CreateDataDirLockFile(DataDir, false)) - proc_exit(1); + CreateDataDirLockFile(DataDir, false); } SetProcessingMode(BootstrapProcessing); |