diff options
Diffstat (limited to 'sys/dev/hil/hilkbd.c')
-rw-r--r-- | sys/dev/hil/hilkbd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/hil/hilkbd.c b/sys/dev/hil/hilkbd.c index 7b0a13cf48d..2af64896b61 100644 --- a/sys/dev/hil/hilkbd.c +++ b/sys/dev/hil/hilkbd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hilkbd.c,v 1.15 2011/11/09 14:22:37 shadchin Exp $ */ +/* $OpenBSD: hilkbd.c,v 1.16 2014/01/26 17:48:08 miod Exp $ */ /* * Copyright (c) 2003, Miodrag Vallat. * All rights reserved. @@ -104,7 +104,7 @@ struct wskbd_mapdata hilkbd_keymapdata = { #ifdef HILKBD_LAYOUT HILKBD_LAYOUT, #else - KB_US, + KB_US | KB_DEFAULT, #endif }; @@ -113,7 +113,7 @@ struct wskbd_mapdata hilkbd_keymapdata_ps2 = { #ifdef HILKBD_LAYOUT HILKBD_LAYOUT, #else - KB_US, + KB_US | KB_DEFAULT, #endif }; |