P2P: Fix p2p_send_action conversions

Couple of these missed the change in the first argument and resulted
in various crashes.
This commit is contained in:
Jouni Malinen 2010-10-20 21:32:18 +03:00 committed by Jouni Malinen
parent 3f9285ff19
commit 7374b68ee9
2 changed files with 3 additions and 3 deletions

View file

@ -291,7 +291,7 @@ int p2p_send_prov_disc_req(struct p2p_data *p2p, struct p2p_device *dev,
return -1;
p2p->pending_action_state = P2P_PENDING_PD;
if (p2p_send_action(p2p->cfg->cb_ctx, freq, dev->p2p_device_addr,
if (p2p_send_action(p2p, freq, dev->p2p_device_addr,
p2p->cfg->dev_addr, dev->p2p_device_addr,
wpabuf_head(req), wpabuf_len(req), 200) < 0) {
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,

View file

@ -285,7 +285,7 @@ int p2p_start_sd(struct p2p_data *p2p, struct p2p_device *dev)
p2p->sd_query = query;
p2p->pending_action_state = P2P_PENDING_SD;
if (p2p_send_action(p2p->cfg->cb_ctx, freq, dev->p2p_device_addr,
if (p2p_send_action(p2p, freq, dev->p2p_device_addr,
p2p->cfg->dev_addr, dev->p2p_device_addr,
wpabuf_head(req), wpabuf_len(req), 5000) < 0) {
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,
@ -449,7 +449,7 @@ void p2p_sd_response(struct p2p_data *p2p, int freq, const u8 *dst,
return;
p2p->pending_action_state = P2P_NO_PENDING_ACTION;
if (p2p_send_action(p2p->cfg->cb_ctx, freq, dst, p2p->cfg->dev_addr,
if (p2p_send_action(p2p, freq, dst, p2p->cfg->dev_addr,
p2p->cfg->dev_addr,
wpabuf_head(resp), wpabuf_len(resp), 200) < 0)
wpa_msg(p2p->cfg->msg_ctx, MSG_DEBUG,