diff options
author | Jouni Malinen <j@w1.fi> | 2015-07-26 09:10:14 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2015-07-26 15:12:09 (GMT) |
commit | 55cd405a44f69335e424ee248d1c4ac107b4ca74 (patch) | |
tree | 87f373cb5f638e0fcb2d5e281f0500b498933632 /src | |
parent | 5994658309b0d92b007c7b0b84dcb71ec2fb05c7 (diff) | |
download | hostap-55cd405a44f69335e424ee248d1c4ac107b4ca74.zip hostap-55cd405a44f69335e424ee248d1c4ac107b4ca74.tar.gz hostap-55cd405a44f69335e424ee248d1c4ac107b4ca74.tar.bz2 |
FST: Remove unnecessary fst_attach() already attached check
Now that both hostapd and wpa_supplicant already enforce no duplicate
fst_attach() calls, there is no need for this check within fst_attach().
Signed-off-by: Jouni Malinen <j@w1.fi>
Diffstat (limited to 'src')
-rw-r--r-- | src/fst/fst.c | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/fst/fst.c b/src/fst/fst.c index 347c6fa..a65b41c 100644 --- a/src/fst/fst.c +++ b/src/fst/fst.c @@ -34,19 +34,6 @@ static void fst_ctrl_iface_notify_peer_state_change(struct fst_iface *iface, } -static struct fst_group * fst_find_group_by_iface(const char *ifname) -{ - struct fst_group *g; - - foreach_fst_group(g) { - if (fst_group_get_iface_by_name(g, ifname)) - return g; - } - - return NULL; -} - - struct fst_iface * fst_attach(const char *ifname, const u8 *own_addr, const struct fst_wpa_obj *iface_obj, const struct fst_iface_cfg *cfg) @@ -60,14 +47,6 @@ struct fst_iface * fst_attach(const char *ifname, const u8 *own_addr, WPA_ASSERT(iface_obj != NULL); WPA_ASSERT(cfg != NULL); - g = fst_find_group_by_iface(ifname); - if (g) { - fst_printf(MSG_ERROR, - "%s: iface is already part of an FST group: %s", - ifname, g->group_id); - return NULL; - } - foreach_fst_group(g) { if (os_strcmp(cfg->group_id, fst_group_get_id(g)) == 0) { group = g; |