From owner-svn-src-stable-7@FreeBSD.ORG Tue May 3 08:27:16 2011 Return-Path: Delivered-To: svn-src-stable-7@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BD4E2106566B; Tue, 3 May 2011 08:27:16 +0000 (UTC) (envelope-from pluknet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A9D9C8FC12; Tue, 3 May 2011 08:27:16 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id p438RGtp076778; Tue, 3 May 2011 08:27:16 GMT (envelope-from pluknet@svn.freebsd.org) Received: (from pluknet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p438RGCi076776; Tue, 3 May 2011 08:27:16 GMT (envelope-from pluknet@svn.freebsd.org) Message-Id: <201105030827.p438RGCi076776@svn.freebsd.org> From: Sergey Kandaurov Date: Tue, 3 May 2011 08:27:16 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r221367 - stable/7/usr.sbin/mfiutil X-BeenThere: svn-src-stable-7@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for only the 7-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 08:27:16 -0000 Author: pluknet Date: Tue May 3 08:27:16 2011 New Revision: 221367 URL: http://svn.freebsd.org/changeset/base/221367 Log: MFC r221119: Fix typo in "continuously" argument used in patrol auto command. Unlike in head, this version preserves a misspelled argument. Modified: stable/7/usr.sbin/mfiutil/mfi_patrol.c Directory Properties: stable/7/usr.sbin/mfiutil/ (props changed) Modified: stable/7/usr.sbin/mfiutil/mfi_patrol.c ============================================================================== --- stable/7/usr.sbin/mfiutil/mfi_patrol.c Tue May 3 07:46:02 2011 (r221366) +++ stable/7/usr.sbin/mfiutil/mfi_patrol.c Tue May 3 08:27:16 2011 (r221367) @@ -252,7 +252,8 @@ 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], "continously") == 0 || + strcasecmp(av[2], "continuously") == 0) exec_freq = 0xffffffff; else { val = strtol(av[2], &cp, 0);