diff options
author | Magnus Hagander <magnus@hagander.net> | 2018-01-21 13:40:55 +0100 |
---|---|---|
committer | Magnus Hagander <magnus@hagander.net> | 2018-01-21 13:41:52 +0100 |
commit | 5c15a54e851ecdd2b53e6d6a84f8ec0802ffc3cb (patch) | |
tree | 5badd0ff0367604e106ce76637cd5b1a6245d1b7 /src | |
parent | 815f84aa166de294b80e80cc456b79128592720e (diff) | |
download | postgresql-5c15a54e851ecdd2b53e6d6a84f8ec0802ffc3cb.tar.gz postgresql-5c15a54e851ecdd2b53e6d6a84f8ec0802ffc3cb.zip |
Fix wording of "hostaddrs"
The field is still called "hostaddr", so make sure references use
"hostaddr values" instead.
Author: Michael Paquier <michael.paquier@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/interfaces/libpq/fe-connect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/libpq/fe-connect.c b/src/interfaces/libpq/fe-connect.c index 8d543334aec..77eebb0ba13 100644 --- a/src/interfaces/libpq/fe-connect.c +++ b/src/interfaces/libpq/fe-connect.c @@ -972,7 +972,7 @@ connectOptions2(PGconn *conn) { conn->status = CONNECTION_BAD; printfPQExpBuffer(&conn->errorMessage, - libpq_gettext("could not match %d host names to %d hostaddrs\n"), + libpq_gettext("could not match %d host names to %d hostaddr values\n"), count_comma_separated_elems(conn->pghost), conn->nconnhost); return false; } |