[PATCH 4/5] client: fix get-bss command spacing/footer

James Prestwood <[email protected]> Wed, 23 Apr 2025 09:54:57 -0400
Newsgroups dev.linux.lists.iwd
Message-ID <[email protected]>
With the new SignalStrength properties the column width needed to
be updated. In addition there was no table footer which caused
the auto-refresh to not work correctly.
---
 client/station.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/client/station.c b/client/station.c
index 5066a9f1..2c195f6b 100644
--- a/client/station.c
+++ b/client/station.c
@@ -765,10 +765,12 @@ 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, 14, 18);
 		display_table_row(MARGIN, 1, 1, "");
 	}
 
+	display_table_footer();
+
 	return CMD_STATUS_DONE;
 }
 
-- 
2.34.1