From 2007c85d43a99ff371d46da38fe60e6143f5ee7b Mon Sep 17 00:00:00 2001 From: Michael Schroeder Date: Wed, 28 Aug 2013 17:24:47 +0200 Subject: [PATCH] solv example: use gpgv instead of gpg to verify sigs --- examples/solv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/solv.c b/examples/solv.c index 9b6bd48..7d6de97 100644 --- a/examples/solv.c +++ b/examples/solv.c @@ -973,7 +973,7 @@ checksig(Pool *sigpool, FILE *fp, FILE *sigfp) lseek(fileno(fp), 0, SEEK_SET); possigfp = lseek(fileno(sigfp), 0, SEEK_CUR); lseek(fileno(sigfp), 0, SEEK_SET); - snprintf(cmd, sizeof(cmd), "gpg -q --homedir %s --verify /dev/fd/%d /dev/fd/%d >/dev/null 2>&1", gpgdir, fileno(sigfp), fileno(fp)); + snprintf(cmd, sizeof(cmd), "gpgv -q --homedir %s --keyring %s/pubring.gpg /dev/fd/%d /dev/fd/%d >/dev/null 2>&1", gpgdir, gpgdir, fileno(sigfp), fileno(fp)); fcntl(fileno(fp), F_SETFD, 0); /* clear CLOEXEC */ fcntl(fileno(sigfp), F_SETFD, 0); /* clear CLOEXEC */ r = system(cmd); -- 2.7.4