summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEamon Walsh <ewalsh@tycho.nsa.gov>2006-12-14 14:41:11 -0500
committerEamon Walsh <ewalsh@moss-uranus.epoch.ncsc.mil>2006-12-14 14:41:11 -0500
commit03e919c17ff7981bc2d8d03eaf0955adbb03a7b0 (patch)
tree9f9b86325fe6f839fd852ea56732325b2e5e78d2 /src
parent392b8d45b08b9e87facb7f23cb2226fcd5062425 (diff)
Naming change: Security*Access -> Dix*Access
Diffstat (limited to 'src')
-rw-r--r--src/apm_rush.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/apm_rush.c b/src/apm_rush.c
index 0679b5a..61c066a 100644
--- a/src/apm_rush.c
+++ b/src/apm_rush.c
@@ -426,7 +426,7 @@ ProcXF86RushLockPixmap(register ClientPtr client)
rep.sequenceNumber = client->sequence;
pix = (PixmapPtr)SecurityLookupIDByType(client,
stuff->pixmap, RT_PIXMAP,
- SecurityReadAccess);
+ DixReadAccess);
rep.addr = xf86RushLockPixmap(stuff->screen, pix);
WriteToClient(client, SIZEOF(xXF86RushLockPixmapReply), (char*)&rep);
@@ -445,7 +445,7 @@ ProcXF86RushUnlockPixmap(register ClientPtr client)
REQUEST_SIZE_MATCH(xXF86RushUnlockPixmapReq);
pix = (PixmapPtr)SecurityLookupIDByType(client,
stuff->pixmap, RT_PIXMAP,
- SecurityReadAccess);
+ DixReadAccess);
xf86RushUnlockPixmap(stuff->screen, pix);
return client->noClientException;
}
@@ -577,7 +577,7 @@ ProcXF86RushOverlayPixmap(ClientPtr client)
pPixmap = (PixmapPtr)SecurityLookupIDByType(client,
stuff->pixmap, RT_PIXMAP,
- SecurityReadAccess);
+ DixReadAccess);
if (!pPixmap) {
client->errorValue = stuff->pixmap;
return (BadPixmap);