Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 2 Sep 2010 06:07:03 +0000 (UTC)
From:      Maxim Konovalov <maxim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org
Subject:   svn commit: r212139 - stable/8/sbin/kldload
Message-ID:  <201009020607.o82673fA094178@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);
 }
 



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