From owner-svn-src-stable-8@FreeBSD.ORG Thu Sep 2 06:07:03 2010 Return-Path: Delivered-To: svn-src-stable-8@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6FD4C106566C; Thu, 2 Sep 2010 06:07:03 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 5EA9B8FC1A; Thu, 2 Sep 2010 06:07:03 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o82673Hh094181; Thu, 2 Sep 2010 06:07:03 GMT (envelope-from maxim@svn.freebsd.org) Received: (from maxim@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o82673fA094178; Thu, 2 Sep 2010 06:07:03 GMT (envelope-from maxim@svn.freebsd.org) Message-Id: <201009020607.o82673fA094178@svn.freebsd.org> From: Maxim Konovalov Date: Thu, 2 Sep 2010 06:07:03 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r212139 - stable/8/sbin/kldload X-BeenThere: svn-src-stable-8@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for only the 8-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2010 06:07:03 -0000 Author: maxim Date: Thu Sep 2 06:07:03 2010 New Revision: 212139 URL: http://svn.freebsd.org/changeset/base/212139 Log: MFC r209970,209971,211990: add -q flag to usage() and man page synopsys. Modified: stable/8/sbin/kldload/kldload.8 stable/8/sbin/kldload/kldload.c Directory Properties: stable/8/sbin/kldload/ (props changed) Modified: stable/8/sbin/kldload/kldload.8 ============================================================================== --- stable/8/sbin/kldload/kldload.8 Thu Sep 2 05:07:34 2010 (r212138) +++ stable/8/sbin/kldload/kldload.8 Thu Sep 2 06:07:03 2010 (r212139) @@ -33,7 +33,7 @@ .Nd load a file into the kernel .Sh SYNOPSIS .Nm -.Op Fl v +.Op Fl qv .Ar .Sh DESCRIPTION The @@ -60,7 +60,7 @@ The utility will warn if a module is requested as a bare filename and is present in the current directory. .Pp -The following option is available: +The following options are available: .Bl -tag -width indent .It Fl v Be more verbose. Modified: stable/8/sbin/kldload/kldload.c ============================================================================== --- stable/8/sbin/kldload/kldload.c Thu Sep 2 05:07:34 2010 (r212138) +++ stable/8/sbin/kldload/kldload.c Thu Sep 2 06:07:03 2010 (r212139) @@ -129,7 +129,7 @@ path_check(const char *kldname, int quie static void usage(void) { - fprintf(stderr, "usage: kldload [-v] file ...\n"); + fprintf(stderr, "usage: kldload [-qv] file ...\n"); exit(1); }