Skip to content

Commit 4687738

Browse files
committed
Fix function return type confusion
When parse_hba_line's return type was changed from bool to a pointer, the MANDATORY_AUTH_ARG macro wasn't adjusted. This back-patches commit c74d586 into out-of-support branches, pursuant to newly-established project policy. The point is to suppress scary-looking warnings so that people building these branches needn't expend brain cells verifying that it's safe to ignore the warnings. Discussion: https://postgr.es/m/d0316012-ece7-7b7e-2d36-9c38cb77cb3b@enterprisedb.com
1 parent 98274e8 commit 4687738

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/libpq/hba.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -745,7 +745,7 @@ check_same_host_or_net(SockAddr *raddr, IPCompareMethod method)
745745
authname, argname), \
746746
errcontext("line %d of configuration file \"%s\"", \
747747
line_num, HbaFileName))); \
748-
return false; \
748+
return NULL; \
749749
} \
750750
} while (0);
751751

0 commit comments

Comments
 (0)