diff options
Diffstat (limited to 'verifier_test.cpp')
-rw-r--r-- | verifier_test.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/verifier_test.cpp b/verifier_test.cpp index 10a5ddaad..3ba270de7 100644 --- a/verifier_test.cpp +++ b/verifier_test.cpp @@ -21,7 +21,9 @@ #include <sys/stat.h> #include <fcntl.h> +/* #include "common.h" +*/ #include "verifier.h" #include "ui.h" #include "mincrypt/sha.h" @@ -237,7 +239,8 @@ int main(int argc, char **argv) { return 4; } - int result = verify_file(map.addr, map.length, certs, num_keys); + int result = verify_file(map.addr, map.length); + if (result == VERIFY_SUCCESS) { printf("VERIFIED\n"); return 0; |