diff options
author | Bruce Momjian <bruce@momjian.us> | 1998-05-29 17:00:34 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1998-05-29 17:00:34 +0000 |
commit | 212c905e2c5a5f470d5ecd1fa45241ca41a98308 (patch) | |
tree | d5c2aedf587c7263c2828c99648fbd367e867c61 /src/backend/bootstrap/bootstrap.c | |
parent | 2d4c6cab962fa17486ad2843f4d2bf0e5eec3628 (diff) |
Remove fork()/exec() and only do fork(). Small cleanups.
Diffstat (limited to 'src/backend/bootstrap/bootstrap.c')
-rw-r--r-- | src/backend/bootstrap/bootstrap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/bootstrap/bootstrap.c b/src/backend/bootstrap/bootstrap.c index f41187c0504..d2e6fff5bbd 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); |