diff options
| author | Dima Dorfman <dd@FreeBSD.org> | 2002-07-10 03:39:52 +0000 |
|---|---|---|
| committer | Dima Dorfman <dd@FreeBSD.org> | 2002-07-10 03:39:52 +0000 |
| commit | 5d1bb94f36e70c60ad32dbf250a6c918e1fedc68 (patch) | |
| tree | 557cee23107b9cd3d28c49c711b5fc9f8836657b /usr.sbin/vidcontrol | |
| parent | 5ec065ee159d42483f7365b2c3f9a39e376ecadc (diff) | |
Notes
Diffstat (limited to 'usr.sbin/vidcontrol')
| -rw-r--r-- | usr.sbin/vidcontrol/vidcontrol.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/vidcontrol/vidcontrol.c b/usr.sbin/vidcontrol/vidcontrol.c index c56a9eca6c1f..d8082f513437 100644 --- a/usr.sbin/vidcontrol/vidcontrol.c +++ b/usr.sbin/vidcontrol/vidcontrol.c @@ -513,7 +513,7 @@ set_mouse(char *arg) else if (!strcmp(arg, "off")) mouse.operation = MOUSE_HIDE; else { - warnx("argument to -m must either on or off"); + warnx("argument to -m must be either on or off"); return; } ioctl(0, CONS_MOUSECTL, &mouse); @@ -529,7 +529,7 @@ set_lockswitch(char *arg) else if (!strcmp(arg, "on")) data = 0x02; else { - warnx("argument to -S must either on or off"); + warnx("argument to -S must be either on or off"); return; } if (ioctl(0, VT_LOCKSWITCH, &data) == -1) @@ -638,7 +638,7 @@ show_info(char *arg) else if (!strcmp(arg, "mode")) show_mode_info(); else { - warnx("argument to -i must either adapter or mode"); + warnx("argument to -i must be either adapter or mode"); return; } } |
