summaryrefslogtreecommitdiff
path: root/src/backend/replication/basebackup.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2011-07-08 07:37:04 +0300
committerPeter Eisentraut <peter_e@gmx.net>2011-07-08 07:37:04 +0300
commitf05c65090a964b30135236a90fc85986e0ca56a6 (patch)
tree3be3e586ca10fdf1b63185f79725632d761726a5 /src/backend/replication/basebackup.c
parentc59b8ba6cd48e0fc0c1be8d86d4a19e7bf37d7e0 (diff)
Message style improvements
Diffstat (limited to 'src/backend/replication/basebackup.c')
-rw-r--r--src/backend/replication/basebackup.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/replication/basebackup.c b/src/backend/replication/basebackup.c
index 030a283e817..bcde19c71b6 100644
--- a/src/backend/replication/basebackup.c
+++ b/src/backend/replication/basebackup.c
@@ -119,7 +119,7 @@ perform_base_backup(basebackup_options *opt, DIR *tblspcdir)
if (readlink(fullpath, linkpath, sizeof(linkpath) - 1) == -1)
{
ereport(WARNING,
- (errmsg("unable to read symbolic link %s: %m", fullpath)));
+ (errmsg("could not read symbolic link \"%s\": %m", fullpath)));
continue;
}
@@ -363,7 +363,7 @@ SendBaseBackup(BaseBackupCmd *cmd)
dir = AllocateDir("pg_tblspc");
if (!dir)
ereport(ERROR,
- (errmsg("unable to open directory pg_tblspc: %m")));
+ (errmsg("could not open directory \"pg_tblspc\": %m")));
perform_base_backup(&opt, dir);