From 212c905e2c5a5f470d5ecd1fa45241ca41a98308 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Fri, 29 May 1998 17:00:34 +0000 Subject: Remove fork()/exec() and only do fork(). Small cleanups. --- src/backend/bootstrap/bootstrap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/backend/bootstrap/bootstrap.c') diff --git a/src/backend/bootstrap/bootstrap.c b/src/backend/bootstrap/bootstrap.c index f41187c050..d2e6fff5bb 100644 --- a/src/backend/bootstrap/bootstrap.c +++ b/src/backend/bootstrap/bootstrap.c @@ -7,7 +7,7 @@ * Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.41 1998/05/19 18:05:44 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.42 1998/05/29 17:00:05 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -382,7 +382,7 @@ BootstrapMain(int argc, char *argv[]) * initialize input fd * ---------------- */ - if (IsUnderPostmaster == true && portFd < 0) + if (IsUnderPostmaster && portFd < 0) { fputs("backend: failed, no -P option with -postmaster opt.\n", stderr); exitpg(1); -- cgit v1.2.1