diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-03-31 00:54:04 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-03-31 00:54:04 +0000 |
commit | 68031ef80c7c4b90a04aa30c1ad68768360e3d48 (patch) | |
tree | d2ee1d78421969bb20eba61c6005c4506efb771c | |
parent | 4b06220c51fafcd62e10f0ae81ff09ef760f5378 (diff) |
extraneous new line in stations list
-rw-r--r-- | sbin/wicontrol/wicontrol.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/wicontrol/wicontrol.c b/sbin/wicontrol/wicontrol.c index 295ff6427b1..243f8f20c38 100644 --- a/sbin/wicontrol/wicontrol.c +++ b/sbin/wicontrol/wicontrol.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wicontrol.c,v 1.24 2002/03/28 20:48:38 mickey Exp $ */ +/* $OpenBSD: wicontrol.c,v 1.25 2002/03/31 00:54:03 mickey Exp $ */ /* * Copyright (c) 1997, 1998, 1999 @@ -69,7 +69,7 @@ static const char copyright[] = "@(#) Copyright (c) 1997, 1998, 1999\ Bill Paul. All rights reserved."; static const char rcsid[] = - "@(#) $OpenBSD: wicontrol.c,v 1.24 2002/03/28 20:48:38 mickey Exp $"; + "@(#) $OpenBSD: wicontrol.c,v 1.25 2002/03/31 00:54:03 mickey Exp $"; #endif void wi_getval(char *, struct wi_req *); @@ -699,7 +699,7 @@ wi_dumpstations(iface) printb(", caps", info->capinfo, IEEE80211_CAPINFO_BITS); printb(", rates", info->rates, WI_RATES_BITS); if (info->sig_info) - printf(", sig=%d/%d\n", + printf(", sig=%d/%d", info->sig_info >> 8, info->sig_info & 0xff); putchar('\n'); } |