pgsql: Fix pg_hba_file_rules for authentication method cert

From: Magnus Hagander <magnus(at)hagander(dot)net>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Fix pg_hba_file_rules for authentication method cert
Date: 2022-01-26 09:04:02
Message-ID: E1nCeDi-0006ov-3w@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Fix pg_hba_file_rules for authentication method cert

For authentication method cert, clientcert=verify-full is implied. But
the pg_hba_file_rules entry would incorrectly show clientcert=verify-ca.

Per bug #17354

Reported-By: Feike Steenbergen
Reviewed-By: Jonathan Katz
Backpatch-through: 12

Branch
------
REL_12_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/aa58f5c53142782bd6a376a578d85d5ddd13d751

Modified Files
--------------
src/backend/libpq/hba.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)

Browse pgsql-committers by date

  From Date Subject
Next Message John Naylor 2022-01-26 20:43:28 Re: pgsql: Add missing pthread_barrier_t.
Previous Message Tom Lane 2022-01-25 23:52:52 pgsql: Replace use of deprecated Python module distutils.sysconfig, tak