diff options
author | Simon Riggs <simon@2ndQuadrant.com> | 2010-04-19 19:02:18 +0000 |
---|---|---|
committer | Simon Riggs <simon@2ndQuadrant.com> | 2010-04-19 19:02:18 +0000 |
commit | cfac702223a904fb7db55db2084ac68611fd95dc (patch) | |
tree | 5ff89850daaf4d44cb950a22464bdfe289bdc17f /src/backend/libpq/hba.c | |
parent | 7bc76d51fbac35950ae5e5d05535bdc33f93b42c (diff) |
Add new message for explicit rejection by pg_hba.conf. Implicit
rejection retains same message as before.
Diffstat (limited to 'src/backend/libpq/hba.c')
-rw-r--r-- | src/backend/libpq/hba.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/libpq/hba.c b/src/backend/libpq/hba.c index 90ef86d1dbf..11443f76e2d 100644 --- a/src/backend/libpq/hba.c +++ b/src/backend/libpq/hba.c @@ -10,7 +10,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/libpq/hba.c,v 1.204 2010/03/24 17:05:45 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/libpq/hba.c,v 1.205 2010/04/19 19:02:18 sriggs Exp $ * *------------------------------------------------------------------------- */ @@ -1389,9 +1389,9 @@ check_hba(hbaPort *port) return true; } - /* If no matching entry was found, synthesize 'reject' entry. */ + /* If no matching entry was found, then implicitly reject. */ hba = palloc0(sizeof(HbaLine)); - hba->auth_method = uaReject; + hba->auth_method = uaImplicitReject; port->hba = hba; return true; |