aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTreeHugger Robot <treehugger-gerrit@google.com>2022-02-23 20:28:33 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2022-02-23 20:28:33 +0000
commitdbf849047c6b1ea0803ea57cf6f3375767e81eff (patch)
treef891397758f3142e9d76d749ecda5e07e9764fae
parentcd63c30d5ca5e9bb69ebbb5e4390a730318016e0 (diff)
parent0b255145a40907846eec2625a02b92a70bf4645b (diff)
downloadwpa_supplicant_8-dbf849047c6b1ea0803ea57cf6f3375767e81eff.tar.gz
Merge "Update supplicant service to call onEapFailure with the new bssid argument." into tm-dev
-rw-r--r--wpa_supplicant/aidl/aidl_manager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/wpa_supplicant/aidl/aidl_manager.cpp b/wpa_supplicant/aidl/aidl_manager.cpp
index 04e84b42..f9f04129 100644
--- a/wpa_supplicant/aidl/aidl_manager.cpp
+++ b/wpa_supplicant/aidl/aidl_manager.cpp
@@ -1546,7 +1546,7 @@ void AidlManager::notifyEapError(struct wpa_supplicant *wpa_s, int error_code)
misc_utils::charBufToString(wpa_s->ifname),
std::bind(
&ISupplicantStaIfaceCallback::onEapFailure,
- std::placeholders::_1, error_code));
+ std::placeholders::_1, std::vector<uint8_t>(), error_code));
}
/**