mirror of
https://github.com/postgres/postgres.git
synced 2026-02-03 20:40:14 -05:00
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 commit is contained in:
parent
d788121aba
commit
c74d586d2f
1 changed files with 1 additions and 1 deletions
|
|
@ -790,7 +790,7 @@ check_same_host_or_net(SockAddr *raddr, IPCompareMethod method)
|
|||
authname, argname), \
|
||||
errcontext("line %d of configuration file \"%s\"", \
|
||||
line_num, HbaFileName))); \
|
||||
return false; \
|
||||
return NULL; \
|
||||
} \
|
||||
} while (0);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue