Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 7c1abc0

Browse files
committed
Error message capitalization fix
1 parent 8570114 commit 7c1abc0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bin/pg_basebackup/receivelog.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ open_walfile(XLogRecPtr startpoint, uint32 timeline, char *basedir, char *namebu
6262
f = open(fn, O_WRONLY | O_CREAT | PG_BINARY, S_IRUSR | S_IWUSR);
6363
if (f == -1)
6464
{
65-
fprintf(stderr, _("%s: Could not open WAL segment %s: %s\n"),
65+
fprintf(stderr, _("%s: could not open WAL segment %s: %s\n"),
6666
progname, fn, strerror(errno));
6767
return -1;
6868
}

0 commit comments

Comments
 (0)