2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-29 13:28:14 +00:00

[master] Fixed incorrect usage statement in omshell.c

This commit is contained in:
Thomas Markwalder 2017-12-11 07:28:38 -05:00
parent e6ffc27f24
commit 7b4f284e50

View File

@ -385,7 +385,7 @@ main(int argc, char **argv) {
token = next_token (&val, (unsigned *)0, cfile); token = next_token (&val, (unsigned *)0, cfile);
if (token != END_OF_FILE && token != EOL) { if (token != END_OF_FILE && token != EOL) {
printf ("usage: key <name> <value> {algorithm}\n"); printf ("usage: key <name> <value>\n");
skip_to_semi (cfile); skip_to_semi (cfile);
break; break;
} }