When printing SSID's in ifconfig(8)'s scan mode, set the width of the

ssid field to 32 characters instead of 14, as long SSID's are quite
common and hard to type in if you can't read them.
This commit is contained in:
rwatson 2005-12-30 17:27:26 +00:00
parent 7a7413525a
commit 1bd879c937

View File

@ -846,7 +846,7 @@ list_scan(int s)
{
uint8_t buf[24*1024];
struct ieee80211req ireq;
char ssid[14];
char ssid[IEEE80211_NWID_LEN+1];
uint8_t *cp;
int len;
@ -861,7 +861,7 @@ list_scan(int s)
if (len < sizeof(struct ieee80211req_scan_result))
return;
printf("%-14.14s %-17.17s %4s %4s %-5s %3s %4s\n"
printf("%-32.32s %-17.17s %4s %4s %-5s %3s %4s\n"
, "SSID"
, "BSSID"
, "CHAN"
@ -877,7 +877,7 @@ list_scan(int s)
sr = (struct ieee80211req_scan_result *) cp;
vp = (u_int8_t *)(sr+1);
printf("%-14.*s %s %3d %3dM %2d:%-2d %3d %-4.4s"
printf("%-32.*s %s %3d %3dM %2d:%-2d %3d %-4.4s"
, copy_essid(ssid, sizeof(ssid), vp, sr->isr_ssid_len)
, ssid
, ether_ntoa((const struct ether_addr *) sr->isr_bssid)