Module Name: src
Committed By: jnemeth
Date: Wed Jun 10 03:30:32 UTC 2009
Modified Files:
src/sbin/modload: main.c modload.8
Log Message:
-p -P doesn't make much sense since no module will be loaded.
To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/sbin/modload/main.c
cvs rdiff -u -r1.35 -r1.36 src/sbin/modload/modload.8
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sbin/modload/main.c
diff -u src/sbin/modload/main.c:1.11 src/sbin/modload/main.c:1.12
--- src/sbin/modload/main.c:1.11 Tue Jun 9 20:35:02 2009
+++ src/sbin/modload/main.c Wed Jun 10 03:30:32 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: main.c,v 1.11 2009/06/09 20:35:02 jnemeth Exp $ */
+/* $NetBSD: main.c,v 1.12 2009/06/10 03:30:32 jnemeth Exp $ */
/*-
* Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -28,7 +28,7 @@
#include <sys/cdefs.h>
#ifndef lint
-__RCSID("$NetBSD: main.c,v 1.11 2009/06/09 20:35:02 jnemeth Exp $");
+__RCSID("$NetBSD: main.c,v 1.12 2009/06/10 03:30:32 jnemeth Exp $");
#endif /* !lint */
#include <sys/module.h>
@@ -253,7 +253,7 @@
(void)fprintf(stderr,
"Usage: %s [-P] [-f] [-b var=boolean] [-i var=integer] "
"[-s var=string] module\n"
- " %s -p [-P] [-b var=boolean] [-d var] [-i var=integer] "
+ " %s -p [-b var=boolean] [-d var] [-i var=integer] "
"[-m plist]\n [-s var=string]\n",
getprogname(), getprogname());
exit(EXIT_FAILURE);
Index: src/sbin/modload/modload.8
diff -u src/sbin/modload/modload.8:1.35 src/sbin/modload/modload.8:1.36
--- src/sbin/modload/modload.8:1.35 Tue Jun 9 20:35:02 2009
+++ src/sbin/modload/modload.8 Wed Jun 10 03:30:32 2009
@@ -1,4 +1,4 @@
-.\" $NetBSD: modload.8,v 1.35 2009/06/09 20:35:02 jnemeth Exp $
+.\" $NetBSD: modload.8,v 1.36 2009/06/10 03:30:32 jnemeth Exp $
.\"
.\" Copyright (c) 1993 Christopher G. Demetriou
.\" All rights reserved.
@@ -43,7 +43,6 @@
.Op Fl f
.Op Fl b Ar var=boolean
.Op Fl i Ar var=integer
-.Op Fl P
.Op Fl s Ar var=string
.Ar module
.Nm