diff options
Diffstat (limited to 'src/unpack.c')
-rw-r--r-- | src/unpack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unpack.c b/src/unpack.c index 481a89db3..65e321751 100644 --- a/src/unpack.c +++ b/src/unpack.c @@ -145,7 +145,7 @@ deb_verify(const char *filename) } else { int status; - status = subproc_wait(pid, "debsig-verify"); + status = subproc_wait_check(pid, "debsig-verify", PROCNOCHECK); if (!(WIFEXITED(status) && WEXITSTATUS(status) == 0)) { if (!fc_badverify) ohshit(_("verification on package %s failed!"), filename); |