aboutsummaryrefslogtreecommitdiff
path: root/src/backend/replication/basebackup.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2013-02-22 23:33:07 -0500
committerPeter Eisentraut <peter_e@gmx.net>2013-02-22 23:33:07 -0500
commit4f362926692631a67cd76b747f92389c8f63478e (patch)
tree51916d7da0d78ae508a85d0e9bbaad871f3827b8 /src/backend/replication/basebackup.c
parent36f697cbba44fd55f23727066c3274fd01919640 (diff)
downloadpostgresql-4f362926692631a67cd76b747f92389c8f63478e.tar.gz
postgresql-4f362926692631a67cd76b747f92389c8f63478e.zip
Add quotes to messages
Diffstat (limited to 'src/backend/replication/basebackup.c')
-rw-r--r--src/backend/replication/basebackup.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/replication/basebackup.c b/src/backend/replication/basebackup.c
index 57946a9fa97..9e1c5d7363b 100644
--- a/src/backend/replication/basebackup.c
+++ b/src/backend/replication/basebackup.c
@@ -314,7 +314,7 @@ perform_base_backup(basebackup_options *opt, DIR *tblspcdir)
char startfname[MAXFNAMELEN];
XLogFileName(startfname, ThisTimeLineID, startsegno);
ereport(ERROR,
- (errmsg("could not find WAL file %s", startfname)));
+ (errmsg("could not find WAL file \"%s\"", startfname)));
}
for (i = 0; i < nWalFiles; i++)
{
@@ -327,7 +327,7 @@ perform_base_backup(basebackup_options *opt, DIR *tblspcdir)
char nextfname[MAXFNAMELEN];
XLogFileName(nextfname, ThisTimeLineID, nextsegno);
ereport(ERROR,
- (errmsg("could not find WAL file %s", nextfname)));
+ (errmsg("could not find WAL file \"%s\"", nextfname)));
}
}
if (segno != endsegno)
@@ -335,7 +335,7 @@ perform_base_backup(basebackup_options *opt, DIR *tblspcdir)
char endfname[MAXFNAMELEN];
XLogFileName(endfname, ThisTimeLineID, endsegno);
ereport(ERROR,
- (errmsg("could not find WAL file %s", endfname)));
+ (errmsg("could not find WAL file \"%s\"", endfname)));
}
/* Ok, we have everything we need. Send the WAL files. */