diff options
author | Eamon Walsh <ewalsh@tycho.nsa.gov> | 2006-12-14 14:45:42 -0500 |
---|---|---|
committer | Eamon Walsh <ewalsh@moss-uranus.epoch.ncsc.mil> | 2006-12-14 14:45:42 -0500 |
commit | 6c46645cfc1afda8aeabfe0ed4d9342673b702f1 (patch) | |
tree | 2523959f8850da48eae6a55109dc1ad33ebf4090 /damageext | |
parent | b88ad820fac81d0dfd557a384bf0406e8893e7af (diff) |
Naming change: Security*Access -> Dix*Access
Diffstat (limited to 'damageext')
-rwxr-xr-x | damageext/damageext.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/damageext/damageext.c b/damageext/damageext.c index 225f9ecf0..c8f28e953 100755 --- a/damageext/damageext.c +++ b/damageext/damageext.c @@ -179,7 +179,7 @@ ProcDamageCreate (ClientPtr client) REQUEST_SIZE_MATCH(xDamageCreateReq); LEGAL_NEW_RESOURCE(stuff->damage, client); SECURITY_VERIFY_DRAWABLE (pDrawable, stuff->drawable, client, - SecurityReadAccess); + DixReadAccess); switch (stuff->level) { case XDamageReportRawRectangles: level = DamageReportRawRegion; @@ -237,7 +237,7 @@ ProcDamageDestroy (ClientPtr client) DamageExtPtr pDamageExt; REQUEST_SIZE_MATCH(xDamageDestroyReq); - VERIFY_DAMAGEEXT(pDamageExt, stuff->damage, client, SecurityWriteAccess); + VERIFY_DAMAGEEXT(pDamageExt, stuff->damage, client, DixWriteAccess); FreeResource (stuff->damage, RT_NONE); return (client->noClientException); } @@ -251,9 +251,9 @@ ProcDamageSubtract (ClientPtr client) RegionPtr pParts; REQUEST_SIZE_MATCH(xDamageSubtractReq); - VERIFY_DAMAGEEXT(pDamageExt, stuff->damage, client, SecurityWriteAccess); - VERIFY_REGION_OR_NONE(pRepair, stuff->repair, client, SecurityWriteAccess); - VERIFY_REGION_OR_NONE(pParts, stuff->parts, client, SecurityWriteAccess); + VERIFY_DAMAGEEXT(pDamageExt, stuff->damage, client, DixWriteAccess); + VERIFY_REGION_OR_NONE(pRepair, stuff->repair, client, DixWriteAccess); + VERIFY_REGION_OR_NONE(pParts, stuff->parts, client, DixWriteAccess); if (pDamageExt->level != DamageReportRawRegion) { |