summaryrefslogtreecommitdiff
path: root/hw/xquartz/xpr
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2012-09-24 11:43:01 -0700
committerKeith Packard <keithp@keithp.com>2012-09-24 11:43:01 -0700
commit4dd5989d15465f3f3480b521d4e36673972fa24a (patch)
tree663c1ce4a48c3936054c80f889510028cf0f7687 /hw/xquartz/xpr
parent0b02150c27e98f996e10d7489f9f67a30e4e3497 (diff)
parent506e3437c73e5ae935ff7c056d7808fbb0c7e614 (diff)
Merge remote-tracking branch 'ajax/server-1.14-abi-churn'
Diffstat (limited to 'hw/xquartz/xpr')
-rw-r--r--hw/xquartz/xpr/appledri.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/hw/xquartz/xpr/appledri.c b/hw/xquartz/xpr/appledri.c
index f77848f13..9aac07240 100644
--- a/hw/xquartz/xpr/appledri.c
+++ b/hw/xquartz/xpr/appledri.c
@@ -129,7 +129,7 @@ ProcAppleDRIQueryDirectRenderingCapable(register ClientPtr client)
}
rep.isCapable = isCapable;
- if (!LocalClient(client))
+ if (!client->local)
rep.isCapable = 0;
if (client->swapped) {
@@ -354,7 +354,7 @@ ProcAppleDRIDispatch(register ClientPtr client)
return ProcAppleDRIQueryDirectRenderingCapable(client);
}
- if (!LocalClient(client))
+ if (!client->local)
return DRIErrorBase + AppleDRIClientNotLocal;
switch (stuff->data) {
@@ -469,7 +469,7 @@ SProcAppleDRIDispatch(register ClientPtr client)
return SProcAppleDRIQueryDirectRenderingCapable(client);
}
- if (!LocalClient(client))
+ if (!client->local)
return DRIErrorBase + AppleDRIClientNotLocal;
switch (stuff->data) {