diff options
| author | Peter Eisentraut | 2023-01-26 09:48:32 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2023-01-26 09:48:32 +0000 |
| commit | 81266442fbcb19ec184134f0a256207f05026520 (patch) | |
| tree | 16d805aef4dade972182d3c450d30a57df3c6249 /src | |
| parent | 6c6b4972664491de408670354fdbccc7c83a1c89 (diff) | |
Remove gratuitous references to postmaster program
"postgres" has long been officially preferred over "postmaster" as the
name of the program to invoke to run the server. Some example scripts
and code comments still used the latter. Change those.
Discussion: https://www.postgresql.org/message-id/flat/ece84b69-8f94-8b88-925f-64207cb3a2f0@enterprisedb.com
Diffstat (limited to 'src')
| -rw-r--r-- | src/port/path.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/port/path.c b/src/port/path.c index 401a3243bc8..65c7943fee1 100644 --- a/src/port/path.c +++ b/src/port/path.c @@ -651,7 +651,7 @@ dir_strcmp(const char *s1, const char *s2) * For example: * target_path = '/usr/local/share/postgresql' * bin_path = '/usr/local/bin' - * my_exec_path = '/opt/pgsql/bin/postmaster' + * my_exec_path = '/opt/pgsql/bin/postgres' * Given these inputs, the common prefix is '/usr/local/', the tail of * bin_path is 'bin' which does match the last directory component of * my_exec_path, so we would return '/opt/pgsql/share/postgresql' |
