Fix typo in "continuously" argument used in patrol auto command.

Obtained from:	Sascha Wildner <saw att online dott de>
Approved by:	jhb
MFC after:	3 days
This commit is contained in:
Sergey Kandaurov 2011-04-27 14:58:06 +00:00
parent 849e836ec6
commit 0e24a634ce
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=221119

View File

@ -252,7 +252,7 @@ patrol_config(int ac, char **av)
if (strcasecmp(av[1], "auto") == 0) {
op_mode = MFI_PR_OPMODE_AUTO;
if (ac > 2) {
if (strcasecmp(av[2], "continously") == 0)
if (strcasecmp(av[2], "continuously") == 0)
exec_freq = 0xffffffff;
else {
val = strtol(av[2], &cp, 0);