aboutsummaryrefslogtreecommitdiff
path: root/src/backend/commands/tablespace.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2004-11-05 17:11:34 +0000
committerPeter Eisentraut <peter_e@gmx.net>2004-11-05 17:11:34 +0000
commit0ed3c7665e2fe46efd3eef936a1265be2ec6707f (patch)
treebb1ecfd5878fec3d57fced34d2bd06129e9e3707 /src/backend/commands/tablespace.c
parenta23db90ce0f0a5d41be0d5e15a72b6e9890b568a (diff)
downloadpostgresql-0ed3c7665e2fe46efd3eef936a1265be2ec6707f.tar.gz
postgresql-0ed3c7665e2fe46efd3eef936a1265be2ec6707f.zip
Small message clarifications
Diffstat (limited to 'src/backend/commands/tablespace.c')
-rw-r--r--src/backend/commands/tablespace.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/commands/tablespace.c b/src/backend/commands/tablespace.c
index 1cbeef657ae..55f086d6609 100644
--- a/src/backend/commands/tablespace.c
+++ b/src/backend/commands/tablespace.c
@@ -45,7 +45,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/commands/tablespace.c,v 1.12 2004/10/17 20:47:20 tgl Exp $
+ * $PostgreSQL: pgsql/src/backend/commands/tablespace.c,v 1.13 2004/11/05 17:11:05 petere Exp $
*
*-------------------------------------------------------------------------
*/
@@ -589,7 +589,7 @@ remove_tablespace_directories(Oid tablespaceoid, bool redo)
if (errno != ENOENT)
ereport(ERROR,
(errcode_for_file_access(),
- errmsg("could not unlink file \"%s\": %m",
+ errmsg("could not remove file \"%s\": %m",
subfile)));
}
@@ -614,7 +614,7 @@ remove_tablespace_directories(Oid tablespaceoid, bool redo)
if (unlink(location) < 0)
ereport(ERROR,
(errcode_for_file_access(),
- errmsg("could not unlink symbolic link \"%s\": %m",
+ errmsg("could not remove symbolic link \"%s\": %m",
location)));
}