wpa_cli: Add missing quote around interface name

There was only an open quote present.

Signed-off-by: Andrew Siplas <andrew@asiplas.net>
This commit is contained in:
Andrew Siplas 2020-03-04 20:55:18 -05:00 committed by Jouni Malinen
parent f64b601c47
commit 2dd72315d9

View file

@ -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);