diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-07-28 00:09:16 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-07-28 00:09:16 +0000 |
commit | 81b5c8a1364e7d287fb0aaac848f7f84e64b86d3 (patch) | |
tree | 6ce59b7bf5b0cd674a2b0e906adecdc98a231ddf /src/backend/commands/dbcommands.c | |
parent | b556e8200e55261cf41de7ce8be4b38b0a062c2b (diff) | |
download | postgresql-81b5c8a1364e7d287fb0aaac848f7f84e64b86d3.tar.gz postgresql-81b5c8a1364e7d287fb0aaac848f7f84e64b86d3.zip |
A visit from the message-style police ...
Diffstat (limited to 'src/backend/commands/dbcommands.c')
-rw-r--r-- | src/backend/commands/dbcommands.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/commands/dbcommands.c b/src/backend/commands/dbcommands.c index 24ad0bf41a2..93701c2a59e 100644 --- a/src/backend/commands/dbcommands.c +++ b/src/backend/commands/dbcommands.c @@ -9,7 +9,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/commands/dbcommands.c,v 1.117 2003/07/18 23:20:32 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/commands/dbcommands.c,v 1.118 2003/07/28 00:09:14 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -334,12 +334,12 @@ createdb(const CreatedbStmt *stmt) if (mkdir(target_dir, S_IRWXU) != 0) ereport(ERROR, (errcode_for_file_access(), - errmsg("unable to create database directory \"%s\": %m", + errmsg("could not create database directory \"%s\": %m", target_dir))); if (rmdir(target_dir) != 0) ereport(ERROR, (errcode_for_file_access(), - errmsg("unable to remove temp directory \"%s\": %m", + errmsg("could not remove temp directory \"%s\": %m", target_dir))); /* Make the symlink, if needed */ |