mirror of
https://github.com/postgres/postgres.git
synced 2025-07-24 14:22:24 +03: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:
@ -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);
|
||||
|
||||
|
Reference in New Issue
Block a user