From: Peter Eisentraut Date: Sat, 23 Feb 2013 04:33:07 +0000 (-0500) Subject: Add quotes to messages X-Git-Tag: REL9_3_BETA1~308 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4f362926692631a67cd76b747f92389c8f63478e;p=postgresql Add quotes to messages --- diff --git a/src/backend/replication/basebackup.c b/src/backend/replication/basebackup.c index 57946a9fa9..9e1c5d7363 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. */