From: Andrew Siplas Date: Thu, 5 Mar 2020 01:55:18 +0000 (-0500) Subject: wpa_cli: Add missing quote around interface name X-Git-Tag: hostap_2_10~1674 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2dd72315d97bbaba14d2c9fa54dda298f5d957d7;p=thirdparty%2Fhostap.git wpa_cli: Add missing quote around interface name There was only an open quote present. Signed-off-by: Andrew Siplas --- diff --git a/wpa_supplicant/wpa_cli.c b/wpa_supplicant/wpa_cli.c index 490e77c96..22885e646 100644 --- a/wpa_supplicant/wpa_cli.c +++ b/wpa_supplicant/wpa_cli.c @@ -1783,7 +1783,7 @@ static int wpa_cli_cmd_interface(struct wpa_ctrl *ctrl, int argc, char *argv[]) } if (wpa_cli_open_connection(ctrl_ifname, 1) == 0) { - printf("Connected to interface '%s.\n", ctrl_ifname); + printf("Connected to interface '%s'.\n", ctrl_ifname); } else { printf("Could not connect to interface '%s' - re-trying\n", ctrl_ifname);