diff options
author | Eamon Walsh <ewalsh@tycho.nsa.gov> | 2009-10-15 17:32:21 -0400 |
---|---|---|
committer | Eamon Walsh <ewalsh@tycho.nsa.gov> | 2009-10-21 19:32:05 -0400 |
commit | f874af7a85c4d56d4a7dbb5dc460832f294b358b (patch) | |
tree | 73ffb953bfcb0aaa72744168afd65bfe62aa2e0a | |
parent | 5560f270c8c28cdae2ed84aca165724487399ece (diff) |
xselinux: Allow SetWindowCreateContext to be used for pixmaps as well.
Signed-off-by: Eamon Walsh <ewalsh@tycho.nsa.gov>
-rw-r--r-- | Xext/xselinux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Xext/xselinux.c b/Xext/xselinux.c index 3093bf25a..3580852ab 100644 --- a/Xext/xselinux.c +++ b/Xext/xselinux.c @@ -554,7 +554,7 @@ SELinuxLabelResource(XaceResourceAccessRec *rec, SELinuxSubjectRec *subj, security_id_t tsid; /* Check for a create context */ - if (rec->rtype == RT_WINDOW && subj->win_create_sid) { + if (rec->rtype & RC_DRAWABLE && subj->win_create_sid) { sidget(obj->sid = subj->win_create_sid); return Success; } |