diff options
author | Eamon Walsh <ewalsh@tycho.nsa.gov> | 2007-08-30 14:48:24 -0400 |
---|---|---|
committer | Eamon Walsh <ewalsh@moss-charon.epoch.ncsc.mil> | 2007-08-30 14:48:24 -0400 |
commit | 1005b29cc6939851b40397cc9cd0de9476ad3046 (patch) | |
tree | 5a82876e8e2e67ebfa2dbdc4af468a8201a0646b /xfixes | |
parent | 53f346b158fa8e10de5a8777fa6d8d86f918878b (diff) |
xace: Correct some access modes.
Diffstat (limited to 'xfixes')
-rwxr-xr-x | xfixes/cursor.c | 2 | ||||
-rwxr-xr-x | xfixes/select.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/xfixes/cursor.c b/xfixes/cursor.c index 91f149e1a..52f483e03 100755 --- a/xfixes/cursor.c +++ b/xfixes/cursor.c @@ -239,7 +239,7 @@ ProcXFixesSelectCursorInput (ClientPtr client) int rc; REQUEST_SIZE_MATCH (xXFixesSelectCursorInputReq); - rc = dixLookupWindow(&pWin, stuff->window, client, DixSetAttrAccess); + rc = dixLookupWindow(&pWin, stuff->window, client, DixGetAttrAccess); if (rc != Success) return rc; if (stuff->eventMask & ~CursorAllEvents) diff --git a/xfixes/select.c b/xfixes/select.c index 9de152f29..2321212ce 100755 --- a/xfixes/select.c +++ b/xfixes/select.c @@ -203,7 +203,7 @@ ProcXFixesSelectSelectionInput (ClientPtr client) int rc; REQUEST_SIZE_MATCH (xXFixesSelectSelectionInputReq); - rc = dixLookupWindow(&pWin, stuff->window, client, DixSetAttrAccess); + rc = dixLookupWindow(&pWin, stuff->window, client, DixGetAttrAccess); if (rc != Success) return rc; if (stuff->eventMask & ~SelectionAllEvents) |