From d36010e7fec78b3ea25255767b8a2478f85fd325 Mon Sep 17 00:00:00 2001 From: Julien Rouhaud Date: Tue, 26 Jul 2022 12:52:35 +0800 Subject: [PATCH v1] Fix fill_ident_view incorrect usage of HbaFileName Thinko introduced in a2c84990bea. Patchpatch to 15, as the original commit. Author: Julien Rouhaud --- src/backend/utils/adt/hbafuncs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/utils/adt/hbafuncs.c b/src/backend/utils/adt/hbafuncs.c index 598259718c..9e5794071c 100644 --- a/src/backend/utils/adt/hbafuncs.c +++ b/src/backend/utils/adt/hbafuncs.c @@ -512,7 +512,7 @@ fill_ident_view(Tuplestorestate *tuple_store, TupleDesc tupdesc) errmsg("could not open usermap file \"%s\": %m", IdentFileName))); - linecxt = tokenize_auth_file(HbaFileName, file, &ident_lines, DEBUG3); + linecxt = tokenize_auth_file(IdentFileName, file, &ident_lines, DEBUG3); FreeFile(file); /* Now parse all the lines */ -- 2.37.0