summaryrefslogtreecommitdiff
path: root/randr/rrmode.c
diff options
context:
space:
mode:
authorEamon Walsh <ewalsh@tycho.nsa.gov>2009-08-16 00:06:10 -0400
committerEamon Walsh <ewalsh@tycho.nsa.gov>2009-08-17 14:51:11 -0400
commit4098ad72d00e65d142fb9fe8a1194be35338508b (patch)
tree77942a0ffa1990ea298456808240329c1fbbc981 /randr/rrmode.c
parentd4b8f7602b5e266a0ebd3b1ba23724362cc7de3a (diff)
xace: fix access mode in dixLookupWindow within several RandR calls.
Referencing a screen using a window only requires GetAttr access. Signed-off-by: Eamon Walsh <ewalsh@tycho.nsa.gov>
Diffstat (limited to 'randr/rrmode.c')
-rw-r--r--randr/rrmode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/randr/rrmode.c b/randr/rrmode.c
index 3d053bc66..9642ddae3 100644
--- a/randr/rrmode.c
+++ b/randr/rrmode.c
@@ -288,7 +288,7 @@ ProcRRCreateMode (ClientPtr client)
RRModePtr mode;
REQUEST_AT_LEAST_SIZE (xRRCreateModeReq);
- rc = dixLookupWindow(&pWin, stuff->window, client, DixReadAccess);
+ rc = dixLookupWindow(&pWin, stuff->window, client, DixGetAttrAccess);
if (rc != Success)
return rc;