diff options
author | Neil Conway <neilc@samurai.com> | 2005-10-11 23:00:39 +0000 |
---|---|---|
committer | Neil Conway <neilc@samurai.com> | 2005-10-11 23:00:39 +0000 |
commit | 25a5b740cd1158e3a4ff4c0432164f4198afb05b (patch) | |
tree | dd8a68c00a9418cea17c615485fee180326de52e | |
parent | 31d276d0ed6d26f633a6348c8f9602bfb660650e (diff) |
Fix typo in sample pg_hba.conf; per IRC report from Bernhard Neuhauser.
-rw-r--r-- | src/backend/libpq/pg_hba.conf.sample | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/libpq/pg_hba.conf.sample b/src/backend/libpq/pg_hba.conf.sample index f4f002b7079..a4514d3a270 100644 --- a/src/backend/libpq/pg_hba.conf.sample +++ b/src/backend/libpq/pg_hba.conf.sample @@ -26,7 +26,7 @@ # USER can be "all", an actual user name or a group name prefixed with # "+" or a list containing either. IP-ADDRESS and IP-MASK specify the # set of hosts the record matches. CIDR-MASK is an integer between 0 -# and 32 (IPv6) or 128(IPv6) inclusive, that specifies the number of +# and 32 (IPv4) or 128 (IPv6) inclusive, that specifies the number of # significant bits in the mask, so an IPv4 CIDR-MASK of 8 is equivalent # to an IP-MASK of 255.0.0.0, and an IPv6 CIDR-MASK of 64 is equivalent # to an IP-MASK of ffff:ffff:ffff:ffff::. METHOD can be "trust", "reject", |