Commit 7c1abc00 authored by Magnus Hagander's avatar Magnus Hagander

Error message capitalization fix

parent 8570114d
...@@ -62,7 +62,7 @@ open_walfile(XLogRecPtr startpoint, uint32 timeline, char *basedir, char *namebu ...@@ -62,7 +62,7 @@ open_walfile(XLogRecPtr startpoint, uint32 timeline, char *basedir, char *namebu
f = open(fn, O_WRONLY | O_CREAT | PG_BINARY, S_IRUSR | S_IWUSR); f = open(fn, O_WRONLY | O_CREAT | PG_BINARY, S_IRUSR | S_IWUSR);
if (f == -1) if (f == -1)
{ {
fprintf(stderr, _("%s: Could not open WAL segment %s: %s\n"), fprintf(stderr, _("%s: could not open WAL segment %s: %s\n"),
progname, fn, strerror(errno)); progname, fn, strerror(errno));
return -1; return -1;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment