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 82546edce..0c4503f44 100644 --- a/verifier_test.cpp +++ b/verifier_test.cpp @@ -23,7 +23,9 @@ #include <sys/types.h> #include <sys/stat.h> +/* #include "common.h" +*/ #include "verifier.h" #include "ui.h" #include "mincrypt/sha.h" @@ -242,7 +244,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; |