Commit 7d41a2bd authored by Tom Lane's avatar Tom Lane

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 41493bac.
parent 1753b1b0
...@@ -716,7 +716,7 @@ CheckMD5Auth(Port *port, char **logdetail) ...@@ -716,7 +716,7 @@ CheckMD5Auth(Port *port, char **logdetail)
if (!pg_backend_random(md5Salt, 4)) if (!pg_backend_random(md5Salt, 4))
{ {
ereport(LOG, ereport(LOG,
(errmsg("could not generate random MD5 salt."))); (errmsg("could not generate random MD5 salt")));
return STATUS_ERROR; return STATUS_ERROR;
} }
......
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