aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2015-10-01 21:39:56 -0400
committerPeter Eisentraut <peter_e@gmx.net>2015-10-01 21:52:46 -0400
commit867bc6849f141e17cd4d3b416f48cc46839f2d76 (patch)
tree25866ad6f7a068f3fd75f04ed39f3355a42b6432 /src
parent5ea47e8f2a7d524eb491b1ffffbc98a012745409 (diff)
downloadpostgresql-867bc6849f141e17cd4d3b416f48cc46839f2d76.tar.gz
postgresql-867bc6849f141e17cd4d3b416f48cc46839f2d76.zip
Fix message punctuation according to style guide
Diffstat (limited to 'src')
-rw-r--r--src/backend/access/transam/xlogreader.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/access/transam/xlogreader.c b/src/backend/access/transam/xlogreader.c
index 3b5d32a5815..37cf9dee80f 100644
--- a/src/backend/access/transam/xlogreader.c
+++ b/src/backend/access/transam/xlogreader.c
@@ -748,20 +748,20 @@ ValidXLogPageHeader(XLogReaderState *state, XLogRecPtr recptr,
snprintf(sysident_str, sizeof(sysident_str), UINT64_FORMAT,
state->system_identifier);
report_invalid_record(state,
- "WAL file is from different database system: WAL file database system identifier is %s, pg_control database system identifier is %s.",
+ "WAL file is from different database system: WAL file database system identifier is %s, pg_control database system identifier is %s",
fhdrident_str, sysident_str);
return false;
}
else if (longhdr->xlp_seg_size != XLogSegSize)
{
report_invalid_record(state,
- "WAL file is from different database system: Incorrect XLOG_SEG_SIZE in page header.");
+ "WAL file is from different database system: incorrect XLOG_SEG_SIZE in page header");
return false;
}
else if (longhdr->xlp_xlog_blcksz != XLOG_BLCKSZ)
{
report_invalid_record(state,
- "WAL file is from different database system: Incorrect XLOG_BLCKSZ in page header.");
+ "WAL file is from different database system: incorrect XLOG_BLCKSZ in page header");
return false;
}
}