From b556e8200e55261cf41de7ce8be4b38b0a062c2b Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sun, 27 Jul 2003 21:49:55 +0000 Subject: elog mop-up: bring some straggling fprintf(stderr)'s into the elog world. --- src/backend/bootstrap/bootstrap.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src/backend/bootstrap/bootstrap.c') 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); -- cgit v1.2.3