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:
parent
f64b601c47
commit
2dd72315d9
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue