From bdcfaae4cca0945d812ae4bd64d0ffc08971ce24 Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Fri, 13 Jul 2001 16:30:11 +0000 Subject: [PATCH] Repeat after me: "when reporting `file not found', perform a little bit of useful HCI consideration and tell which file was being looked for". --- usr.sbin/kbdcontrol/kbdcontrol.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/kbdcontrol/kbdcontrol.c b/usr.sbin/kbdcontrol/kbdcontrol.c index af47958c1eb..aed71476370 100644 --- a/usr.sbin/kbdcontrol/kbdcontrol.c +++ b/usr.sbin/kbdcontrol/kbdcontrol.c @@ -774,7 +774,7 @@ load_keymap(char *opt, int dumponly) } } if (fd == NULL) { - warn("keymap file not found"); + warn("keymap file \"%s\" not found", opt); return; } memset(&keymap, 0, sizeof(keymap));