1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-22 21:53:06 +03:00

Assorted message style improvements

This commit is contained in:
Peter Eisentraut
2012-07-02 21:12:46 +03:00
parent 41f4a0ab78
commit 2b44306315
13 changed files with 26 additions and 26 deletions

View File

@@ -319,7 +319,7 @@ winsock_strerror(int err, char *strerrbuf, size_t buflen)
}
if (!success)
sprintf(strerrbuf, libpq_gettext("Unknown socket error (0x%08X/%d)"), err, err);
sprintf(strerrbuf, libpq_gettext("unrecognized socket error: 0x%08X/%d"), err, err);
else
{
strerrbuf[buflen - 1] = '\0';