From: Tomasz Bursztyka Date: Wed, 14 May 2014 13:10:40 +0000 (+0300) Subject: dbus: Provide the P2P Device Address from the relevant structure X-Git-Tag: hostap_2_2~110 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f3734e23777d1ad681ad650da7beba80263eee74;p=thirdparty%2Fhostap.git dbus: Provide the P2P Device Address from the relevant structure Fixes a minor mistake: the p2p_info structure should be used here instead of the peer_handler_args one. Signed-off-by: Tomasz Bursztyka --- diff --git a/wpa_supplicant/dbus/dbus_new_handlers_p2p.c b/wpa_supplicant/dbus/dbus_new_handlers_p2p.c index 7857bfd73..20cbeedc0 100644 --- a/wpa_supplicant/dbus/dbus_new_handlers_p2p.c +++ b/wpa_supplicant/dbus/dbus_new_handlers_p2p.c @@ -1516,7 +1516,7 @@ dbus_bool_t wpas_dbus_getter_p2p_peer_device_address(DBusMessageIter *iter, } return wpas_dbus_simple_array_property_getter( - iter, DBUS_TYPE_BYTE, (char *) peer_args->p2p_device_addr, + iter, DBUS_TYPE_BYTE, (char *) info->p2p_device_addr, ETH_ALEN, error); }