mirror of
https://github.com/postgres/postgres.git
synced 2025-07-26 01:22:12 +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), \
|
authname, argname), \
|
||||||
errcontext("line %d of configuration file \"%s\"", \
|
errcontext("line %d of configuration file \"%s\"", \
|
||||||
line_num, HbaFileName))); \
|
line_num, HbaFileName))); \
|
||||||
return false; \
|
return NULL; \
|
||||||
} \
|
} \
|
||||||
} while (0);
|
} while (0);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user