mirror of
https://github.com/openbsd/src.git
synced 2025-01-10 06:47:55 -08:00
Restore the original help output: capitalize the characters that
are required to uniquely identify a command. Three characters are required for the cdplay and cdrip commands. ok krw@
This commit is contained in:
parent
deaed6641e
commit
a248831fca
@ -1,4 +1,4 @@
|
||||
/* $OpenBSD: cdio.c,v 1.68 2008/10/29 00:07:07 deraadt Exp $ */
|
||||
/* $OpenBSD: cdio.c,v 1.69 2009/02/07 20:21:13 naddy Exp $ */
|
||||
|
||||
/* Copyright (c) 1995 Serge V. Vakulenko
|
||||
* All rights reserved.
|
||||
@ -111,7 +111,7 @@
|
||||
struct cmdtab {
|
||||
int command;
|
||||
char *name;
|
||||
unsigned int min;
|
||||
int min;
|
||||
char *args;
|
||||
} cmdtab[] = {
|
||||
{ CMD_CLOSE, "close", 1, "" },
|
||||
@ -139,8 +139,8 @@ struct cmdtab {
|
||||
{ CMD_CDID, "cdid", 3, "" },
|
||||
{ CMD_QUIT, "exit", 2, "" },
|
||||
{ CMD_BLANK, "blank", 1, "" },
|
||||
{ CMD_CDRIP, "cdrip", 1, "[[track1-trackN] ...]" },
|
||||
{ CMD_CDPLAY, "cdplay", 1, "[[track1-trackN] ...]" },
|
||||
{ CMD_CDRIP, "cdrip", 3, "[[track1-trackN] ...]" },
|
||||
{ CMD_CDPLAY, "cdplay", 3, "[[track1-trackN] ...]" },
|
||||
{ 0, 0, 0, 0}
|
||||
};
|
||||
|
||||
@ -196,7 +196,7 @@ help(void)
|
||||
{
|
||||
struct cmdtab *c;
|
||||
char *s, n;
|
||||
u_int i;
|
||||
int i;
|
||||
|
||||
for (c = cmdtab; c->name; ++c) {
|
||||
if (!c->args)
|
||||
|
Loading…
Reference in New Issue
Block a user