From 749e17ab1dd7cc31f4189a8050d24b21e82800b2 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sun, 4 Jun 2017 02:23:49 -0400 Subject: [PATCH] Add a log message if manifest is valid. --- code/autoupdater/autoupdater.c | 1 + 1 file changed, 1 insertion(+) diff --git a/code/autoupdater/autoupdater.c b/code/autoupdater/autoupdater.c index d7aa51d8..221381b5 100644 --- a/code/autoupdater/autoupdater.c +++ b/code/autoupdater/autoupdater.c @@ -666,6 +666,7 @@ static void verifySignature(const char *fname, const char *sigfname, const char die("Manifest is incomplete, corrupt, or compromised"); } + info("Manifest signature appears to be valid"); rsa_free(&key); }