From owner-svn-src-stable@freebsd.org Thu Feb 14 16:20:02 2019 Return-Path: Delivered-To: svn-src-stable@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B54AE14D9951; Thu, 14 Feb 2019 16:20:02 +0000 (UTC) (envelope-from freebsd@pdx.rh.CN85.dnsmgr.net) Received: from pdx.rh.CN85.dnsmgr.net (br1.CN84in.dnsmgr.net [69.59.192.140]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 339AC80865; Thu, 14 Feb 2019 16:20:01 +0000 (UTC) (envelope-from freebsd@pdx.rh.CN85.dnsmgr.net) Received: from pdx.rh.CN85.dnsmgr.net (localhost [127.0.0.1]) by pdx.rh.CN85.dnsmgr.net (8.13.3/8.13.3) with ESMTP id x1EGJxbE086683; Thu, 14 Feb 2019 08:19:59 -0800 (PST) (envelope-from freebsd@pdx.rh.CN85.dnsmgr.net) Received: (from freebsd@localhost) by pdx.rh.CN85.dnsmgr.net (8.13.3/8.13.3/Submit) id x1EGJxxY086682; Thu, 14 Feb 2019 08:19:59 -0800 (PST) (envelope-from freebsd) From: "Rodney W. Grimes" Message-Id: <201902141619.x1EGJxxY086682@pdx.rh.CN85.dnsmgr.net> Subject: Re: svn commit: r344114 - stable/12/sbin/sysctl In-Reply-To: <201902140912.x1E9CJDs029383@repo.freebsd.org> To: Guangyuan Yang Date: Thu, 14 Feb 2019 08:19:59 -0800 (PST) CC: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-12@freebsd.org Reply-To: rgrimes@freebsd.org X-Mailer: ELM [version 2.4ME+ PL121h (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII X-Rspamd-Queue-Id: 339AC80865 X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-6.97 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; REPLY(-4.00)[]; NEURAL_HAM_SHORT(-0.97)[-0.974,0] X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Feb 2019 16:20:02 -0000 [ Charset UTF-8 unsupported, converting... ] > Author: ygy (doc committer) > Date: Thu Feb 14 09:12:19 2019 > New Revision: 344114 > URL: https://svnweb.freebsd.org/changeset/base/344114 > > Log: > MFC r343930: > > Remove -R option which was added to sysctl(8) man page per r244106, but it is not implemented. > > Submitted by: Alfonso Siciliano > Reviewed by: 0mp, imp > Differential Revision: https://reviews.freebsd.org/D19012 > > Modified: > stable/12/sbin/sysctl/sysctl.8 > Directory Properties: > stable/12/ (props changed) > > Modified: stable/12/sbin/sysctl/sysctl.8 > ============================================================================== > --- stable/12/sbin/sysctl/sysctl.8 Thu Feb 14 00:52:03 2019 (r344113) > +++ stable/12/sbin/sysctl/sysctl.8 Thu Feb 14 09:12:19 2019 (r344114) > @@ -28,7 +28,7 @@ > .\" From: @(#)sysctl.8 8.1 (Berkeley) 6/6/93 > .\" $FreeBSD$ > .\" > -.Dd September 24, 2018 > +.Dd February 8, 2019 > .Dt SYSCTL 8 > .Os > .Sh NAME > @@ -36,13 +36,13 @@ > .Nd get or set kernel state > .Sh SYNOPSIS > .Nm > -.Op Fl bdehiNnoRTtqx > +.Op Fl bdehiNnoTtqWx The commit message does not mention adding any flags, yet I see a new W flag here? This is a commit message error, as -W is in the man page and usage() of the program. > .Op Fl B Ar bufsize > .Op Fl f Ar filename > .Ar name Ns Op = Ns Ar value Ns Op , Ns Ar value > .Ar ... > .Nm > -.Op Fl bdehNnoRTtqx > +.Op Fl bdehNnoTtqWx And here as well. > .Op Fl B Ar bufsize > .Fl a > .Sh DESCRIPTION > > -- Rod Grimes rgrimes@freebsd.org