From f01fd89b1537cbc5f6572ae6c3d45243bcd7dd14 Mon Sep 17 00:00:00 2001 From: Peter Geoghegan Date: Sat, 17 Sep 2022 16:54:08 -0700 Subject: [PATCH] Make check_usermap() parameter names consistent. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The function has a bool argument named "case_insensitive", but that was spelled "case_sensitive" in the declaration. Make them consistent now to avoid confusion in the future. Author: Peter Geoghegan Reviewed-By: Michael Paquiër Discussion: https://postgr.es/m/CAH2-WznJt9CMM9KJTMjJh_zbL5hD9oX44qdJ4aqZtjFi-zA3Tg@mail.gmail.com Backpatch: 10- --- src/include/libpq/hba.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/libpq/hba.h b/src/include/libpq/hba.h index ecdbd0114ec..a7e6a80c262 100644 --- a/src/include/libpq/hba.h +++ b/src/include/libpq/hba.h @@ -125,7 +125,7 @@ extern bool load_ident(void); extern void hba_getauthmethod(hbaPort *port); extern int check_usermap(const char *usermap_name, const char *pg_role, const char *auth_user, - bool case_sensitive); + bool case_insensitive); extern bool pg_isblank(const char c); #endif /* HBA_H */ -- 2.39.5