diff options
Diffstat (limited to 'adb')
-rw-r--r-- | adb/remount_service.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/adb/remount_service.cpp b/adb/remount_service.cpp index 483ca3d..b150274 100644 --- a/adb/remount_service.cpp +++ b/adb/remount_service.cpp @@ -112,13 +112,13 @@ void remount_service(int fd, void* cookie) { } bool system_verified = false, vendor_verified = false; - property_get("partition.system.verified", prop_buf, "0"); - if (!strcmp(prop_buf, "1")) { + property_get("partition.system.verified", prop_buf, ""); + if (strlen(prop_buf) > 0) { system_verified = true; } - property_get("partition.vendor.verified", prop_buf, "0"); - if (!strcmp(prop_buf, "1")) { + property_get("partition.vendor.verified", prop_buf, ""); + if (strlen(prop_buf) > 0) { vendor_verified = true; } |