From 03f517a1f754825559b86c95133dcd00b74a34ab Mon Sep 17 00:00:00 2001 From: Tim Kourt Date: Mon, 1 May 2017 10:23:52 -0700 Subject: [PATCH] client: Add WSC-capable indication for device --- client/device.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/client/device.c b/client/device.c index 99ba1817..aa082b0f 100644 --- a/client/device.c +++ b/client/device.c @@ -66,6 +66,9 @@ static void display_device(const struct proxy_interface *proxy) device->adapter) ? : ""); } + display("%s%*s %-*s%-*s\n", MARGIN, 8, "", 20, "WSC-capable", + 47, device->wsc ? "yes" : "no"); + display_table_footer(); }