Module Name: src
Committed By: christos
Date: Tue Apr 22 15:55:16 UTC 2014
Modified Files:
src/usr.sbin/wlanctl: wlanctl.c
Log Message:
remove -v no/op
To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/usr.sbin/wlanctl/wlanctl.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.sbin/wlanctl/wlanctl.c
diff -u src/usr.sbin/wlanctl/wlanctl.c:1.13 src/usr.sbin/wlanctl/wlanctl.c:1.14
--- src/usr.sbin/wlanctl/wlanctl.c:1.13 Wed Aug 31 09:32:41 2011
+++ src/usr.sbin/wlanctl/wlanctl.c Tue Apr 22 11:55:16 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: wlanctl.c,v 1.13 2011/08/31 13:32:41 joerg Exp $ */
+/* $NetBSD: wlanctl.c,v 1.14 2014/04/22 15:55:16 christos Exp $ */
/*-
* Copyright (c) 2005 David Young. All rights reserved.
*
@@ -56,7 +56,6 @@ struct flagname {
};
struct cmdflags {
- int cf_v; /* verbose */
int cf_a; /* all 802.11 interfaces */
int cf_p; /* public (i.e. non-private) dests */
};
@@ -179,7 +178,8 @@ print_channel(u_int16_t chanidx, u_int16
* hdr_type: header type: IEEE80211_SYSCTL_T_NODE -> generic node,
* IEEE80211_SYSCTL_T_RSSADAPT -> rssadapt(9) info,
* IEEE80211_SYSCTL_T_DRVSPEC -> driver specific.
- * cf: command flags, cf_v != 0 -> verbose
+ * cf: command flags: cf_a != 0 -> all 802.11 interfaces
+ * cf_p != 0 -> public dests
*/
static int
dump_nodes(const char *ifname_arg, int hdr_type, struct cmdflags *cf)
@@ -287,8 +287,10 @@ dump_nodes(const char *ifname_arg, int h
static void
usage(void)
{
- fprintf(stderr, "usage: %s [ -p ] [ -v ] -a\n"
- "\t[ -v ] interface [ interface ... ]\n", getprogname());
+ fprintf(stderr,
+ "Usage: %s [ -p ] -a\n"
+ " %s [ -p ] interface [ interface ... ]\n",
+ getprogname(), getprogname());
exit(EXIT_FAILURE);
}
@@ -299,7 +301,7 @@ parse_args(int *argcp, char ***argvp, st
(void)memset(cf, 0, sizeof(*cf));
- while ((ch = getopt(*argcp, *argvp, "apv")) != -1) {
+ while ((ch = getopt(*argcp, *argvp, "ap")) != -1) {
switch (ch) {
case 'a':
cf->cf_a = 1;
@@ -307,9 +309,6 @@ parse_args(int *argcp, char ***argvp, st
case 'p':
cf->cf_p = 1;
break;
- case 'v':
- cf->cf_v = 1;
- break;
default:
warnx("unknown option -%c", ch);
usage();