diff options
author | Bruce Momjian <bruce@momjian.us> | 1998-06-09 17:13:06 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1998-06-09 17:13:06 +0000 |
commit | a608637768ee84a32e4e64223fa9c75e5e2776dd (patch) | |
tree | 3ad407376504d81d96a28b15df1ab55b6225c8af /src/backend/tcop/postgres.c | |
parent | cb8539f9be6ce6dca18a6a5cdbc69439d2e919ce (diff) | |
download | postgresql-a608637768ee84a32e4e64223fa9c75e5e2776dd.tar.gz postgresql-a608637768ee84a32e4e64223fa9c75e5e2776dd.zip |
Another for for exec() removal and finding binaries.
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 e2a778b4916..e0d8599465b 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.74 1998/06/08 22:28:27 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.75 1998/06/09 17:13:04 momjian Exp $ * * NOTES * this is the "main" module of the postgres backend and @@ -1167,7 +1167,7 @@ PostgresMain(int argc, char *argv[], int real_argc, char *real_argv[]) SetCharSet(); #endif - if (FindExec(pg_pathname, argv[0]) < 0) + if (FindExec(pg_pathname, argv[0], "postgres") < 0) elog(FATAL, "%s: could not locate executable, bailing out...", argv[0]); @@ -1314,7 +1314,7 @@ PostgresMain(int argc, char *argv[], int real_argc, char *real_argv[]) if (!IsUnderPostmaster) { puts("\nPOSTGRES backend interactive interface"); - puts("$Revision: 1.74 $ $Date: 1998/06/08 22:28:27 $"); + puts("$Revision: 1.75 $ $Date: 1998/06/09 17:13:04 $"); } /* ---------------- |