Merge "Restore "Add UID parameter to authentication token""

This commit is contained in:
Brian Young 2018-02-16 01:18:53 +00:00 committed by Android (Google) Code Review
commit eb7585950e
1 changed files with 1 additions and 1 deletions

View File

@ -322,7 +322,7 @@ public:
std::vector<uint8_t> auth_token_vector(*auth_token,
(*auth_token) + *auth_token_length);
int result = 0;
auto binder_result = service->addAuthToken(auth_token_vector, &result);
auto binder_result = service->addAuthToken(auth_token_vector, uid, &result);
if (!binder_result.isOk() || !keystore::KeyStoreServiceReturnCode(result).isOk()) {
ALOGE("Failure sending auth token to KeyStore: %" PRId32, result);
}