Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 27 Apr 2011 14:58:06 +0000 (UTC)
From:      Sergey Kandaurov <pluknet@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r221119 - head/usr.sbin/mfiutil
Message-ID:  <201104271458.p3REw6RN076271@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pluknet
Date: Wed Apr 27 14:58:06 2011
New Revision: 221119
URL: http://svn.freebsd.org/changeset/base/221119

Log:
  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

Modified:
  head/usr.sbin/mfiutil/mfi_patrol.c

Modified: head/usr.sbin/mfiutil/mfi_patrol.c
==============================================================================
--- head/usr.sbin/mfiutil/mfi_patrol.c	Wed Apr 27 12:12:22 2011	(r221118)
+++ head/usr.sbin/mfiutil/mfi_patrol.c	Wed Apr 27 14:58:06 2011	(r221119)
@@ -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);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201104271458.p3REw6RN076271>