8000 Make check_usermap() parameter names consistent. · postgres/postgres@f01fd89 · GitHub
[go: up one dir, main page]

Skip to content

Commit f01fd89

Browse files
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 <pg@bowt.ie> Reviewed-By: Michael Paquiër <michael@paquier.xyz> Discussion: https://postgr.es/m/CAH2-WznJt9CMM9KJTMjJh_zbL5hD9oX44qdJ4aqZtjFi-zA3Tg@mail.gmail.com Backpatch: 10-
1 parent 7391ab2 commit f01fd89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/include/libpq/hba.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ extern bool load_ident(void);
125125
extern void hba_getauthmethod(hbaPort *port);
126126
extern int check_usermap(const char *usermap_name,
127127
const char *pg_role, const char *auth_user,
128-
bool case_sensitive);
128+
bool case_insensitive);
129129
extern bool pg_isblank(const char c);
130130

131131
#endif /* HBA_H */

0 commit comments

Comments
 (0)
0