From ce9e83d913511fe619da42f805d7bcd1a2a60d90 Mon Sep 17 00:00:00 2001 From: Eamon Walsh Date: Tue, 4 Sep 2007 14:01:55 -0400 Subject: xace: add hooks + new access codes: Damage extension --- damageext/damageext.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/damageext/damageext.c b/damageext/damageext.c index 159746536..517c72dac 100755 --- a/damageext/damageext.c +++ b/damageext/damageext.c @@ -185,7 +185,7 @@ ProcDamageCreate (ClientPtr client) REQUEST_SIZE_MATCH(xDamageCreateReq); LEGAL_NEW_RESOURCE(stuff->damage, client); rc = dixLookupDrawable(&pDrawable, stuff->drawable, client, 0, - DixReadAccess); + DixGetAttrAccess|DixReadAccess); if (rc != Success) return rc; @@ -295,7 +295,7 @@ ProcDamageAdd (ClientPtr client) REQUEST_SIZE_MATCH(xDamageAddReq); VERIFY_REGION(pRegion, stuff->region, client, DixWriteAccess); rc = dixLookupDrawable(&pDrawable, stuff->drawable, client, 0, - DixReadAccess); + DixWriteAccess); if (rc != Success) return rc; -- cgit v1.2.3