GAS server: Remove unused function parameter
This parameter was not used at all, so just remove the argument instead of passing NULL. Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
86388afa56
commit
aff0bee78a
1 changed files with 1 additions and 2 deletions
|
@ -686,7 +686,6 @@ static void anqp_add_icon_binary_file(struct hostapd_data *hapd,
|
||||||
static struct wpabuf *
|
static struct wpabuf *
|
||||||
gas_serv_build_gas_resp_payload(struct hostapd_data *hapd,
|
gas_serv_build_gas_resp_payload(struct hostapd_data *hapd,
|
||||||
unsigned int request,
|
unsigned int request,
|
||||||
struct gas_dialog_info *di,
|
|
||||||
const u8 *home_realm, size_t home_realm_len,
|
const u8 *home_realm, size_t home_realm_len,
|
||||||
const u8 *icon_name, size_t icon_name_len)
|
const u8 *icon_name, size_t icon_name_len)
|
||||||
{
|
{
|
||||||
|
@ -962,7 +961,7 @@ static void gas_serv_req_local_processing(struct hostapd_data *hapd,
|
||||||
{
|
{
|
||||||
struct wpabuf *buf, *tx_buf;
|
struct wpabuf *buf, *tx_buf;
|
||||||
|
|
||||||
buf = gas_serv_build_gas_resp_payload(hapd, qi->request, NULL,
|
buf = gas_serv_build_gas_resp_payload(hapd, qi->request,
|
||||||
qi->home_realm_query,
|
qi->home_realm_query,
|
||||||
qi->home_realm_query_len,
|
qi->home_realm_query_len,
|
||||||
qi->icon_name, qi->icon_name_len);
|
qi->icon_name, qi->icon_name_len);
|
||||||
|
|
Loading…
Reference in a new issue