From: Bruce Momjian Date: Mon, 16 May 2011 16:32:36 +0000 (-0400) Subject: Update pg_upgrade directory check error message. X-Git-Tag: REL9_1_BETA2~117 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e728701fb496ace7fa21fcce5c0ef7fc4c0ec78c;p=thirdparty%2Fpostgresql.git Update pg_upgrade directory check error message. --- 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);