diff options
author | Doug Zongker <dougz@android.com> | 2013-04-12 00:02:46 +0200 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2013-04-12 00:02:46 +0200 |
commit | c7a6858dc9d4e75c9c889890902141c4243228a7 (patch) | |
tree | 925c40d53373f1f7afa08a39090441bba463ab08 /applypatch | |
parent | am 4e21482d: Add liblog (diff) | |
parent | verifier: update to support certificates using SHA-256 (diff) | |
download | android_bootable_recovery-c7a6858dc9d4e75c9c889890902141c4243228a7.tar android_bootable_recovery-c7a6858dc9d4e75c9c889890902141c4243228a7.tar.gz android_bootable_recovery-c7a6858dc9d4e75c9c889890902141c4243228a7.tar.bz2 android_bootable_recovery-c7a6858dc9d4e75c9c889890902141c4243228a7.tar.lz android_bootable_recovery-c7a6858dc9d4e75c9c889890902141c4243228a7.tar.xz android_bootable_recovery-c7a6858dc9d4e75c9c889890902141c4243228a7.tar.zst android_bootable_recovery-c7a6858dc9d4e75c9c889890902141c4243228a7.zip |
Diffstat (limited to 'applypatch')
-rw-r--r-- | applypatch/applypatch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applypatch/applypatch.c b/applypatch/applypatch.c index 69f8633ab..259fa581e 100644 --- a/applypatch/applypatch.c +++ b/applypatch/applypatch.c @@ -101,7 +101,7 @@ int LoadFileContents(const char* filename, FileContents* file, } } - SHA(file->data, file->size, file->sha1); + SHA_hash(file->data, file->size, file->sha1); return 0; } |