client: add missing bracket for "ap <wlan> show"

Fixes: 9659c936cd ("client: implement "ap <wlan> show"")
This commit is contained in:
Jonathan Liu 2021-03-05 22:51:25 +11:00 committed by Denis Kenzior
parent 66b4723216
commit fe6f4153c5
1 changed files with 1 additions and 1 deletions

View File

@ -310,7 +310,7 @@ static const struct command ap_commands[] = {
"Start an access point based on a disk profile" },
{ "<wlan>", "stop", NULL, cmd_stop, "Stop a started access\n"
"\t\t\t\t\t\t point" },
{ "<wlan", "show", NULL, cmd_show, "Show AP info", false },
{ "<wlan>", "show", NULL, cmd_show, "Show AP info", false },
{ }
};