From 5f6954b5e8cbac816cedd3b41100c79b498ed2e4 Mon Sep 17 00:00:00 2001 From: Jonathan Perkin Date: Thu, 30 Jul 2015 11:34:30 +0100 Subject: [PATCH] joyent/pkgsrc#282: handle signature failures. --- actions.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/actions.c b/actions.c index 62b7bea..55619e8 100644 --- a/actions.c +++ b/actions.c @@ -159,6 +159,9 @@ analyse_pkglog(long int filepos) /* Can't install dependency */ if (strstr(err_line, "an\'t install") != NULL) err_count++; + /* unable to verify signature */ + if (strstr(err_line, "unable to verify signature") != NULL) + err_count++; } fclose(err_ro);