Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 109836a

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 <[email protected]> Reviewed-By: Michael Paquiër <[email protected]> Discussion: https://postgr.es/m/CAH2-WznJt9CMM9KJTMjJh_zbL5hD9oX44qdJ4aqZtjFi-zA3Tg@mail.gmail.com Backpatch: 10-
1 parent 19a00ea commit 109836a

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
@@ -123,7 +123,7 @@ extern bool load_ident(void);
123123
extern void hba_getauthmethod(hbaPort *port);
124124
extern int check_usermap(const char *usermap_name,
125125
const char *pg_role, const char *auth_user,
126-
bool case_sensitive);
126+
bool case_insensitive);
127127
extern bool pg_isblank(const char c);
128128

129129
#endif /* HBA_H */

0 commit comments

Comments
 (0)