summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2023-05-05 07:50:08 +0200
committerPeter Eisentraut <peter@eisentraut.org>2023-05-05 07:50:08 +0200
commitb1c4ed2f02b0c4cf1942e6eb2995bdbf8db5cccf (patch)
tree4b1256051d7f5ffc8a0c0dd324bc3bf44d7496d9
parent5d42a97519581a31bdc1d3d4cf10c07ae18b8296 (diff)
downloadpostgresql-b1c4ed2f02b0c4cf1942e6eb2995bdbf8db5cccf.tar.gz
Fix copy-and-pasto in error message
from 2fe3bdbd69
-rw-r--r--src/bin/pg_upgrade/option.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_upgrade/option.c b/src/bin/pg_upgrade/option.c
index 8869b6b60d..640361009e 100644
--- a/src/bin/pg_upgrade/option.c
+++ b/src/bin/pg_upgrade/option.c
@@ -432,7 +432,7 @@ adjust_data_dir(ClusterInfo *cluster)
rc = pclose(output);
if (rc != 0)
- pg_fatal("could not get control data directory using %s: %s",
+ pg_fatal("could not get data directory using %s: %s",
cmd, wait_result_to_str(rc));
/* strip trailing newline and carriage return */