From e728701fb496ace7fa21fcce5c0ef7fc4c0ec78c Mon Sep 17 00:00:00 2001 From: Bruce Momjian <bruce@momjian.us> Date: Mon, 16 May 2011 12:32:36 -0400 Subject: [PATCH] Update pg_upgrade directory check error message. --- contrib/pg_upgrade/exec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/pg_upgrade/exec.c b/contrib/pg_upgrade/exec.c index a66aeb03499..6f1c6effabb 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); -- GitLab