wpa_cli: Fix an issue in the cleanup of udp-remote commits
wpa_ctrl_get_remote_ifname() is defined only for UDP ctrl_iface socket, so this call needs to be made conditional on build parameters. Signed-hostap: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
4be9f27595
commit
db3a03222e
1 changed files with 6 additions and 2 deletions
|
@ -3806,6 +3806,11 @@ static int edit_started = 0;
|
|||
static void start_edit(void)
|
||||
{
|
||||
char *home;
|
||||
char *ps = NULL;
|
||||
|
||||
#ifdef CONFIG_CTRL_IFACE_UDP_REMOTE
|
||||
ps = wpa_ctrl_get_remote_ifname(ctrl_conn);
|
||||
#endif /* CONFIG_CTRL_IFACE_UDP_REMOTE */
|
||||
|
||||
home = getenv("HOME");
|
||||
if (home) {
|
||||
|
@ -3817,8 +3822,7 @@ static void start_edit(void)
|
|||
}
|
||||
|
||||
if (edit_init(wpa_cli_edit_cmd_cb, wpa_cli_edit_eof_cb,
|
||||
wpa_cli_edit_completion_cb, NULL, hfile,
|
||||
wpa_ctrl_get_remote_ifname(ctrl_conn)) < 0) {
|
||||
wpa_cli_edit_completion_cb, NULL, hfile, ps) < 0) {
|
||||
eloop_terminate();
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue