mirror of
https://github.com/postgres/postgres.git
synced 2026-04-21 06:08:26 -04:00
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.
This commit is contained in:
parent
1753b1b027
commit
7d41a2bd3e
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue