mirror of
https://github.com/postgres/postgres.git
synced 2025-08-09 17:03:00 +03:00
NULL is not an ideal way to spell bool "false".
Thinko in commit 6633cfb21
, detected by buildfarm member hamerkop.
This commit is contained in:
@@ -752,7 +752,7 @@ bool
|
|||||||
be_gssapi_get_deleg(Port *port)
|
be_gssapi_get_deleg(Port *port)
|
||||||
{
|
{
|
||||||
if (!port || !port->gss)
|
if (!port || !port->gss)
|
||||||
return NULL;
|
return false;
|
||||||
|
|
||||||
return port->gss->delegated_creds;
|
return port->gss->delegated_creds;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user