summaryrefslogtreecommitdiff
path: root/contrib/pg_upgrade
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2011-05-16 12:32:36 -0400
committerBruce Momjian <bruce@momjian.us>2011-05-16 12:32:36 -0400
commite728701fb496ace7fa21fcce5c0ef7fc4c0ec78c (patch)
treec9c6765a54a7e77337bd415a0674e0718d9af32d /contrib/pg_upgrade
parent8a849cdee4dff3406a405e83e9504ebc52bbcfaa (diff)
downloadpostgresql-e728701fb496ace7fa21fcce5c0ef7fc4c0ec78c.tar.gz
Update pg_upgrade directory check error message.
Diffstat (limited to 'contrib/pg_upgrade')
-rw-r--r--contrib/pg_upgrade/exec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/pg_upgrade/exec.c b/contrib/pg_upgrade/exec.c
index a66aeb0349..6f1c6effab 100644
--- a/contrib/pg_upgrade/exec.c
+++ b/contrib/pg_upgrade/exec.c
@@ -96,7 +96,7 @@ verify_directories(void)
if (access(".", R_OK | W_OK | X_OK) != 0)
pg_log(PG_FATAL,
- "You must have full access permissions in the current directory.\n");
+ "You must have read and write access in the current directory.\n");
prep_status("Checking old data directory (%s)", old_cluster.pgdata);
check_data_dir(old_cluster.pgdata);