summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Moreland <smoreland@google.com>2022-11-21 23:15:18 +0000
committerSteven Moreland <smoreland@google.com>2022-11-21 23:16:00 +0000
commiteb86df7bd4fe5af831812d5971e4b55007aaf978 (patch)
tree6cd9901d153abdb1ba31c404d3a92c2b7a6e1284
parentac26bd59c0b1b0772c91ab86020ff090a2f22059 (diff)
downloadSecureElement-eb86df7bd4fe5af831812d5971e4b55007aaf978.tar.gz
SE AccessControlEnforcer access denied typo
There needs to be a space here or the error is all run together. Bug: 205762050 Test: see test results Change-Id: I163ab884e3379b79589a2fb92fb65d5eb3f7b7b2
-rw-r--r--src/com/android/se/security/AccessControlEnforcer.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/se/security/AccessControlEnforcer.java b/src/com/android/se/security/AccessControlEnforcer.java
index 584e580..707e37a 100644
--- a/src/com/android/se/security/AccessControlEnforcer.java
+++ b/src/com/android/se/security/AccessControlEnforcer.java
@@ -277,7 +277,7 @@ public class AccessControlEnforcer {
// check result of channel access during initialization procedure
if (mInitialChannelAccess.getAccess() == ChannelAccess.ACCESS.DENIED) {
throw new AccessControlException(
- mTag + "access denied: " + mInitialChannelAccess.getReason());
+ mTag + " access denied: " + mInitialChannelAccess.getReason());
}
// this is the new GP Access Control Enforcer implementation
if (mUseAra || mUseArf) {