|
7 | 7 | * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
|
8 | 8 | * Portions Copyright (c) 1994, Regents of the University of California
|
9 | 9 | *
|
10 |
| - * $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.152 2004/07/22 21:09:37 tgl Exp $ |
| 10 | + * $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.153 2004/08/01 17:45:42 tgl Exp $ |
11 | 11 | *
|
12 | 12 | *-------------------------------------------------------------------------
|
13 | 13 | */
|
@@ -1936,7 +1936,7 @@ RestoreArchivedFile(char *path, const char *xlogfname,
|
1936 | 1936 | if (unlink(xlogpath) != 0)
|
1937 | 1937 | ereport(FATAL,
|
1938 | 1938 | (errcode_for_file_access(),
|
1939 |
| - errmsg("could not remove \"%s\": %m", |
| 1939 | + errmsg("could not remove file \"%s\": %m", |
1940 | 1940 | xlogpath)));
|
1941 | 1941 | }
|
1942 | 1942 |
|
@@ -3772,7 +3772,7 @@ exitArchiveRecovery(TimeLineID endTLI, uint32 endLogId, uint32 endLogSeg)
|
3772 | 3772 | if (rename(recoveryPath, xlogpath) != 0)
|
3773 | 3773 | ereport(FATAL,
|
3774 | 3774 | (errcode_for_file_access(),
|
3775 |
| - errmsg("could not rename \"%s\" to \"%s\": %m", |
| 3775 | + errmsg("could not rename file \"%s\" to \"%s\": %m", |
3776 | 3776 | recoveryPath, xlogpath)));
|
3777 | 3777 | /* XXX might we need to fix permissions on the file? */
|
3778 | 3778 | }
|
@@ -3814,7 +3814,7 @@ exitArchiveRecovery(TimeLineID endTLI, uint32 endLogId, uint32 endLogSeg)
|
3814 | 3814 | if (rename(recoveryCommandFile, recoveryCommandDone) != 0)
|
3815 | 3815 | ereport(FATAL,
|
3816 | 3816 | (errcode_for_file_access(),
|
3817 |
| - errmsg("could not rename \"%s\" to \"%s\": %m", |
| 3817 | + errmsg("could not rename file \"%s\" to \"%s\": %m", |
3818 | 3818 | recoveryCommandFile, recoveryCommandDone)));
|
3819 | 3819 |
|
3820 | 3820 | ereport(LOG,
|
|
0 commit comments