From 738edfe667cbd4559fe0c50ed899b187e1c8a68e Mon Sep 17 00:00:00 2001 From: Daan De Meyer Date: Sat, 17 Sep 2022 22:34:56 +0200 Subject: [PATCH] dissect: Log when we fail to load the verity signature partition --- src/dissect/dissect.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dissect/dissect.c b/src/dissect/dissect.c index 4d49bad4583..8cdf312f58a 100644 --- a/src/dissect/dissect.c +++ b/src/dissect/dissect.c @@ -948,7 +948,7 @@ static int run(int argc, char *argv[]) { d->fd, &arg_verity_settings); if (r < 0) - return r; + return log_error_errno(r, "Failed to load verity signature partition: %m"); switch (arg_action) { -- 2.47.3