diff options
author | pluknet <pluknet@FreeBSD.org> | 2011-04-27 14:58:06 +0000 |
---|---|---|
committer | pluknet <pluknet@FreeBSD.org> | 2011-04-27 14:58:06 +0000 |
commit | 334823faa14810bc193788d6b1455a64f857f842 (patch) | |
tree | d4e8b261bb8811db9e50af571cfef9e70a81b80e /usr.sbin/mfiutil/mfi_patrol.c | |
parent | 357ca6cada61ebd7836e0e5e71b59cca440e666a (diff) | |
download | FreeBSD-src-334823faa14810bc193788d6b1455a64f857f842.zip FreeBSD-src-334823faa14810bc193788d6b1455a64f857f842.tar.gz |
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
Diffstat (limited to 'usr.sbin/mfiutil/mfi_patrol.c')
-rw-r--r-- | usr.sbin/mfiutil/mfi_patrol.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/mfiutil/mfi_patrol.c b/usr.sbin/mfiutil/mfi_patrol.c index 6980bec..da7ddb5 100644 --- a/usr.sbin/mfiutil/mfi_patrol.c +++ b/usr.sbin/mfiutil/mfi_patrol.c @@ -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); |