Commit e9491373 authored by Michael Paquier's avatar Michael Paquier

Fix compilation failure with sepgsql

One change for getObjectIdentity() has been missed in 2a10fdc4, causing
the module to not compile properly.  This was actually the only problem,
and it happens that it is easy enough to check the compilation of the
module on Debian after installing libselinux1-dev.

Per buildfarm member rhinoceros.
parent 2a10fdc4
...@@ -546,7 +546,7 @@ sepgsql_relation_truncate(Oid relOid) ...@@ -546,7 +546,7 @@ sepgsql_relation_truncate(Oid relOid)
object.classId = RelationRelationId; object.classId = RelationRelationId;
object.objectId = relOid; object.objectId = relOid;
object.objectSubId = 0; object.objectSubId = 0;
audit_name = getObjectIdentity(&object); audit_name = getObjectIdentity(&object, false);
sepgsql_avc_check_perms(&object, sepgsql_avc_check_perms(&object,
tclass, tclass,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment