diff options
author | Eamon Walsh <ewalsh@tycho.nsa.gov> | 2007-09-28 08:02:00 -0400 |
---|---|---|
committer | Eamon Walsh <ewalsh@moss-charon.epoch.ncsc.mil> | 2007-09-28 08:02:00 -0400 |
commit | 5c03d131815cfe2f78792277ab8352e69e830196 (patch) | |
tree | d321abc400033fce3978558ce9186d89febcdbef /xkb | |
parent | 27612748e0ec20f3a23839f0a12e39f598dd722c (diff) |
xace: add new hooks + access controls: XInput extension.
Introduces new dix API to lookup a device, dixLookupDevice(), which
replaces LookupDeviceIntRec and LookupDevice.
Diffstat (limited to 'xkb')
-rw-r--r-- | xkb/xkbUtils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xkb/xkbUtils.c b/xkb/xkbUtils.c index c7f9a2681..877d4d242 100644 --- a/xkb/xkbUtils.c +++ b/xkb/xkbUtils.c @@ -65,7 +65,7 @@ DeviceIntPtr dev = NULL; if (id&(~0xff)) dev = NULL; - dev= (DeviceIntPtr)LookupDevice(id); + dixLookupDevice(&dev, id, serverClient, DixUnknownAccess); if (dev!=NULL) return dev; if ((!dev)&&(why_rtrn)) |