diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2003-02-12 01:44:12 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2003-02-12 01:44:12 +0000 |
commit | b9156707ae80a7111a92610b3536d3b1033d68f6 (patch) | |
tree | c4649c293159b95d63b9caf8e2f88df1c42eec94 /sbin | |
parent | 54f697660279504e5941bea60659be9d38ff66c0 (diff) |
Define a wsmouse type for HIL mice.
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/wsconsctl/util.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sbin/wsconsctl/util.c b/sbin/wsconsctl/util.c index 42eaf3cd822..e0473b1771d 100644 --- a/sbin/wsconsctl/util.c +++ b/sbin/wsconsctl/util.c @@ -1,4 +1,4 @@ -/* $OpenBSD: util.c,v 1.18 2003/02/11 19:49:45 miod Exp $ */ +/* $OpenBSD: util.c,v 1.19 2003/02/12 01:44:09 miod Exp $ */ /* $NetBSD: util.c,v 1.8 2000/03/14 08:11:53 sato Exp $ */ /*- @@ -68,7 +68,7 @@ static const struct nameint kbtype_tab[] = { { WSKBD_TYPE_ADB, "adb" }, { WSKBD_TYPE_SUN, "sun" }, { WSKBD_TYPE_SUN5, "sun5" }, - { WSKBD_TYPE_HIL, "hil" }, + { WSKBD_TYPE_HIL, "hil" } }; static const struct nameint mstype_tab[] = { @@ -80,7 +80,8 @@ static const struct nameint mstype_tab[] = { { WSMOUSE_TYPE_TPANEL, "touch-pannel" }, { WSMOUSE_TYPE_NEXT, "NeXT" }, { WSMOUSE_TYPE_ARCHIMEDES, "archimedes" }, - { WSMOUSE_TYPE_ADB, "adb" } + { WSMOUSE_TYPE_ADB, "adb" }, + { WSMOUSE_TYPE_HIL, "hil" } }; static const struct nameint dpytype_tab[] = { |