We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent4c0343d commit6cf8462Copy full SHA for 6cf8462
src/bin/pg_basebackup/receivelog.c
@@ -271,7 +271,7 @@ existsTimeLineHistoryFile(char *basedir, TimeLineID tli)
271
if (fd<0)
272
{
273
if (errno!=ENOENT)
274
-fprintf(stderr,_("%s: could not open timeline history file \"%s\": %s"),
+fprintf(stderr,_("%s: could not open timeline history file \"%s\": %s\n"),
275
progname,path,strerror(errno));
276
return false;
277
}
@@ -298,7 +298,7 @@ writeTimeLineHistoryFile(char *basedir, TimeLineID tli, char *filename, char *co
298
TLHistoryFileName(histfname,tli);
299
if (strcmp(histfname,filename)!=0)
300
301
-fprintf(stderr,_("%s: server reported unexpected history file name for timeline %u: %s"),
+fprintf(stderr,_("%s: server reported unexpected history file name for timeline %u: %s\n"),
302
progname,tli,filename);
303
304