From f080297623beeb713ac6173425798f69f361c674 Mon Sep 17 00:00:00 2001 From: matthieu Date: Sun, 25 Nov 2007 15:32:26 +0000 Subject: [PATCH] OpenBSD's still using the old xkb data files. So rules are called "xorg" not "base". --- xserver/dix/devices.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }