From: Peter Geoghegan Date: Sat, 17 Sep 2022 23:54:06 +0000 (-0700) Subject: Make check_usermap() parameter names consistent. X-Git-Tag: REL_10_23~30 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=109836a14fe988571dc94a40c32c7c0b78035edc;p=thirdparty%2Fpostgresql.git Make check_usermap() parameter names consistent. 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- --- diff --git a/src/include/libpq/hba.h b/src/include/libpq/hba.h index c20076bfbda..b97bac655d1 100644 --- a/src/include/libpq/hba.h +++ b/src/include/libpq/hba.h @@ -123,7 +123,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 */