diff options
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; |