Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit e949137

Browse files
committed
Fix compilation failure with sepgsql
One change for getObjectIdentity() has been missed in 2a10fdc, 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.
1 parent 2a10fdc commit e949137

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/sepgsql/relation.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -546,7 +546,7 @@ sepgsql_relation_truncate(Oid relOid)
546546
object.classId = RelationRelationId;
547547
object.objectId = relOid;
548548
object.objectSubId = 0;
549-
audit_name = getObjectIdentity(&object);
549+
audit_name = getObjectIdentity(&object, false);
550550

551551
sepgsql_avc_check_perms(&object,
552552
tclass,

0 commit comments

Comments
 (0)