aboutsummaryrefslogtreecommitdiff
path: root/src/backend/commands/tablespace.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2015-11-16 21:16:42 -0500
committerPeter Eisentraut <peter_e@gmx.net>2015-11-16 21:16:42 -0500
commit689cabf402c33a69e595a0d25f61b1fb49fb1c78 (patch)
tree519966d4b2c4fa4b9cc495a041f18ccf2f484f39 /src/backend/commands/tablespace.c
parent75c8af902e07a2090df429f410df1e753e3358f1 (diff)
downloadpostgresql-689cabf402c33a69e595a0d25f61b1fb49fb1c78.tar.gz
postgresql-689cabf402c33a69e595a0d25f61b1fb49fb1c78.zip
Message improvements
Diffstat (limited to 'src/backend/commands/tablespace.c')
-rw-r--r--src/backend/commands/tablespace.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/commands/tablespace.c b/src/backend/commands/tablespace.c
index 18ae4ab10af..137aec255f4 100644
--- a/src/backend/commands/tablespace.c
+++ b/src/backend/commands/tablespace.c
@@ -800,7 +800,7 @@ remove_symlink:
/* Refuse to remove anything that's not a directory or symlink */
ereport(redo ? LOG : ERROR,
(ERRCODE_SYSTEM_ERROR,
- errmsg("not a directory or symbolic link: \"%s\"",
+ errmsg("\"%s\" is not a directory or symbolic link",
linkloc)));
}
@@ -886,7 +886,7 @@ remove_tablespace_symlink(const char *linkloc)
{
/* Refuse to remove anything that's not a directory or symlink */
ereport(ERROR,
- (errmsg("not a directory or symbolic link: \"%s\"",
+ (errmsg("\"%s\" is not a directory or symbolic link",
linkloc)));
}
}