diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2010-09-28 22:52:49 +0300 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2010-09-28 22:52:49 +0300 |
commit | ac1e1ff57256022b2e4ab091aa5743b92f0a6131 (patch) | |
tree | f868caa8b527a9c9632458a2bf9a714a46c77702 /lib/rpmchecksig.c | |
parent | da2c5fd2cf3b357ba06e786e8aa96a2b67e52eb0 (diff) | |
download | rpm-ac1e1ff57256022b2e4ab091aa5743b92f0a6131.tar.gz rpm-ac1e1ff57256022b2e4ab091aa5743b92f0a6131.tar.bz2 rpm-ac1e1ff57256022b2e4ab091aa5743b92f0a6131.zip |
Fix a rpmTag/rpmSigTag mismatch by using the more appropriate type
- This wouldn't make c++ any happier as the mismatch now occurs
with headerGet() and friends instead of the comparison, but will do for now.
Diffstat (limited to 'lib/rpmchecksig.c')
-rw-r--r-- | lib/rpmchecksig.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rpmchecksig.c b/lib/rpmchecksig.c index 7ad319b87..fff183cb5 100644 --- a/lib/rpmchecksig.c +++ b/lib/rpmchecksig.c @@ -263,7 +263,7 @@ static int rpmpkgVerifySigs(rpmKeyring keyring, rpmQueryFlags flags, char *missingKeys = NULL; char *untrustedKeys = NULL; struct rpmtd_s sigtd; - rpmTag sigtag; + rpmSigTag sigtag; pgpDig dig = NULL; pgpDigParams sigp; Header sigh = NULL; |