diff options
-rw-r--r-- | usr.sbin/kbdcontrol/kbdcontrol.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/kbdcontrol/kbdcontrol.c b/usr.sbin/kbdcontrol/kbdcontrol.c index 4038061c68e7..ef53ab85d2c0 100644 --- a/usr.sbin/kbdcontrol/kbdcontrol.c +++ b/usr.sbin/kbdcontrol/kbdcontrol.c @@ -28,7 +28,7 @@ #ifndef lint static const char rcsid[] = - "$Id: kbdcontrol.c,v 1.12 1998/01/07 08:43:27 yokota Exp $"; + "$Id: kbdcontrol.c,v 1.13 1998/01/12 23:53:26 yokota Exp $"; #endif /* not lint */ #include <ctype.h> @@ -650,8 +650,8 @@ load_keymap(char *opt, int dumponly) FILE *fd; int i; char *name, *cp; - char *prefix[] = {"", "", KEYMAP_PATH, NULL}; - char *postfix[] = {"", ".kbd", ".kbd"}; + char *prefix[] = {"", "", KEYMAP_PATH, KEYMAP_PATH, NULL}; + char *postfix[] = {"", ".kbd", "", ".kbd"}; for (i=0; prefix[i]; i++) { name = mkfullname(prefix[i], opt, postfix[i]); |