diff options
author | Doug Zongker <dougz@google.com> | 2014-07-31 23:59:01 +0200 |
---|---|---|
committer | Doug Zongker <dougz@google.com> | 2014-08-01 00:42:13 +0200 |
commit | eaf33654c1817bd665831a13c5bd0c04daabee02 (patch) | |
tree | 704c52c8d0a1f1ccf3783c495a43a252cdbd468c /uncrypt | |
parent | Auto create parent directories for rename support (diff) | |
download | android_bootable_recovery-eaf33654c1817bd665831a13c5bd0c04daabee02.tar android_bootable_recovery-eaf33654c1817bd665831a13c5bd0c04daabee02.tar.gz android_bootable_recovery-eaf33654c1817bd665831a13c5bd0c04daabee02.tar.bz2 android_bootable_recovery-eaf33654c1817bd665831a13c5bd0c04daabee02.tar.lz android_bootable_recovery-eaf33654c1817bd665831a13c5bd0c04daabee02.tar.xz android_bootable_recovery-eaf33654c1817bd665831a13c5bd0c04daabee02.tar.zst android_bootable_recovery-eaf33654c1817bd665831a13c5bd0c04daabee02.zip |
Diffstat (limited to 'uncrypt')
-rw-r--r-- | uncrypt/uncrypt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/uncrypt/uncrypt.c b/uncrypt/uncrypt.c index 24d1ffc2a..bce53dbb9 100644 --- a/uncrypt/uncrypt.c +++ b/uncrypt/uncrypt.c @@ -159,7 +159,7 @@ char* parse_recovery_command_file() while (fgets(temp, sizeof(temp), f)) { printf("read: %s", temp); - if (strncmp(temp, "--update_package=", strlen("--update_package=")) == 0) { + if (strncmp(temp, "--update_package=/data/", strlen("--update_package=/data/")) == 0) { fn = strdup(temp + strlen("--update_package=")); strcpy(temp, "--update_package=@" CACHE_BLOCK_MAP "\n"); } |