aboutsummaryrefslogtreecommitdiffstats
path: root/g10/getkey.c
diff options
context:
space:
mode:
authorDavid Shaw <[email protected]>2004-09-14 02:00:39 +0000
committerDavid Shaw <[email protected]>2004-09-14 02:00:39 +0000
commit1d8e25695f031518cfaec1ed64eb36f554b49177 (patch)
tree4e11fbd404a16bea706cbfcdfdea65c6658083d9 /g10/getkey.c
parent* pgpgroup-to-gpggroup: New perl script to take groups from PGP command (diff)
downloadgnupg-1d8e25695f031518cfaec1ed64eb36f554b49177.tar.gz
gnupg-1d8e25695f031518cfaec1ed64eb36f554b49177.zip
* getkey.c (premerge_public_with_secret): Fix subkey<->binding sig
mismatch when some secret subkeys are missing. Discovered by Michael Roth.
Diffstat (limited to 'g10/getkey.c')
-rw-r--r--g10/getkey.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/g10/getkey.c b/g10/getkey.c
index 3002e1e9b..8676758f5 100644
--- a/g10/getkey.c
+++ b/g10/getkey.c
@@ -2173,7 +2173,7 @@ premerge_public_with_secret ( KBNODE pubblock, KBNODE secblock )
assert ( last );
/* find the next subkey */
for (next=pub->next,ll=pub;
- next && pub->pkt->pkttype != PKT_PUBLIC_SUBKEY;
+ next && next->pkt->pkttype != PKT_PUBLIC_SUBKEY;
ll = next, next = next->next )
;
/* make new link */