summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane2016-12-20 23:54:13 +0000
committerTom Lane2016-12-20 23:54:13 +0000
commit7d41a2bd3eef4de64ae8f6f683457f12f9407c5d (patch)
tree5b9e6fb3d612db8ca6186676066a44e1d8662606 /src
parent1753b1b027035029c2a2a1649065762fafbf63f3 (diff)
Fix minor error message style violation.
Primary error messages should not end with a period, since they're generally not written as full sentences. Oversight in 41493bac3.
Diffstat (limited to 'src')
-rw-r--r--src/backend/libpq/auth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/libpq/auth.c b/src/backend/libpq/auth.c
index b8ebf1b6f39..72306e639cd 100644
--- a/src/backend/libpq/auth.c
+++ b/src/backend/libpq/auth.c
@@ -716,7 +716,7 @@ CheckMD5Auth(Port *port, char **logdetail)
if (!pg_backend_random(md5Salt, 4))
{
ereport(LOG,
- (errmsg("could not generate random MD5 salt.")));
+ (errmsg("could not generate random MD5 salt")));
return STATUS_ERROR;
}