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

This commit is contained in:
Jorim Jaggi 2018-01-30 15:36:28 +00:00 committed by Android (Google) Code Review
commit 7dee827f4f
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, uid, &result);
auto binder_result = service->addAuthToken(auth_token_vector, &result);
if (!binder_result.isOk() || !keystore::KeyStoreServiceReturnCode(result).isOk()) {
ALOGE("Failure sending auth token to KeyStore: %" PRId32, result);
}