[PATCH v4 5/5] client: widen BSS property value column

Aleksman4o <[email protected]> Tue, 28 Jul 2026 18:46:44 +0300
Newsgroups dev.linux.lists.iwd
Message-ID <[email protected]>
From: Aleks Man <[email protected]>

The get-bsses table used an 18-character value column because Address
was the only property. Make room for longer values such as RSN
capabilities while keeping the table within 80 columns.
---
 client/station.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/client/station.c b/client/station.c
index 5066a9f1..eccf8314 100644
--- a/client/station.c
+++ b/client/station.c
@@ -754,7 +754,7 @@ static enum cmd_status cmd_get_bsses(const char *device_name,
 
 	sprintf(header, "%s BasicServiceSets", network_get_name(network_proxy));
 
-	proxy_properties_display_header(header, MARGIN, 10, 18);
+	proxy_properties_display_header(header, MARGIN, 10, 47);
 
 	for (e = l_queue_get_entries(bss_list); e; e = e->next) {
 		const char *path = e->data;
@@ -765,7 +765,7 @@ static enum cmd_status cmd_get_bsses(const char *device_name,
 			continue;
 
 		display_table_row(MARGIN, 1, strlen(path), path);
-		proxy_properties_display_inline(bss_i, MARGIN, 10, 18);
+		proxy_properties_display_inline(bss_i, MARGIN, 10, 47);
 		display_table_row(MARGIN, 1, 1, "");
 	}
 
-- 
2.55.0