diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2007-11-25 15:32:27 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2007-11-25 15:32:27 +0000 |
commit | 417f076b9eb20b5b90e2a8363e191faaefe57661 (patch) | |
tree | 0531011e0bfac1ab02dd7143607228e6f27c1f89 /xserver/dix | |
parent | b36b445d0ea4d42380210de917344c600224773d (diff) |
OpenBSD's still using the old xkb data files. So rules are called "xorg" not
"base".
Diffstat (limited to 'xserver/dix')
-rw-r--r-- | xserver/dix/devices.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xserver/dix/devices.c b/xserver/dix/devices.c index 9f3c57653..b8f621b70 100644 --- a/xserver/dix/devices.c +++ b/xserver/dix/devices.c @@ -333,7 +333,7 @@ CoreKeyboardProc(DeviceIntPtr pDev, int what) #ifdef XKB if (!noXkbExtension) { bzero(&names, sizeof(names)); - XkbSetRulesDflts("base", "pc105", "us", NULL, NULL); + XkbSetRulesDflts("xorg", "pc105", "us", NULL, NULL); XkbInitKeyboardDeviceStruct(pDev, &names, &keySyms, modMap, CoreKeyboardBell, CoreKeyboardCtl); } |