diff options
Diffstat (limited to 'core/java')
-rw-r--r-- | core/java/android/os/Build.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/os/Build.java b/core/java/android/os/Build.java index 23ddd03..2dfd919 100644 --- a/core/java/android/os/Build.java +++ b/core/java/android/os/Build.java @@ -669,8 +669,8 @@ public class Build { } if (!TextUtils.isEmpty(bootimage)) { - if (!Objects.equals(vendor, bootimage)) { - Slog.e(TAG, "Mismatched fingerprints; system and vendor reported " + system + if (!Objects.equals(system, bootimage)) { + Slog.e(TAG, "Mismatched fingerprints; system reported " + system + " but bootimage reported " + bootimage); return false; } |