diff options
author | David Shaw <[email protected]> | 2002-02-04 05:19:24 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2002-02-04 05:19:24 +0000 |
commit | 346b795eb91a3131d0f4001db319b24bab0e16f6 (patch) | |
tree | 9cfa1b0605e31c06f186a46cfb8de9b58722accb | |
parent | Split "--set-policy-url" into "--cert-policy-url" and "--sig-policy-url" (diff) | |
download | gnupg-346b795eb91a3131d0f4001db319b24bab0e16f6.tar.gz gnupg-346b795eb91a3131d0f4001db319b24bab0e16f6.zip |
Bug fix - do not append keys to each other when --sending more than one.
-rw-r--r-- | g10/ChangeLog | 5 | ||||
-rw-r--r-- | g10/keyserver.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/g10/ChangeLog b/g10/ChangeLog index 13df44ee3..6afd2d04e 100644 --- a/g10/ChangeLog +++ b/g10/ChangeLog @@ -1,3 +1,8 @@ +2002-02-03 David Shaw <[email protected]> + + * keyserver.c (keyserver_spawn): Bug fix - do not append keys to + each other when --sending more than one. + 2002-02-02 David Shaw <[email protected]> * options.h, g10.c (main), keyedit.c (sign_uids), sign.c diff --git a/g10/keyserver.c b/g10/keyserver.c index 5de695ec1..764a969b1 100644 --- a/g10/keyserver.c +++ b/g10/keyserver.c @@ -356,7 +356,7 @@ keyserver_spawn(int action,STRLIST list,u32 (*kidlist)[2],int count,int *prog) afx.what=1; iobuf_push_filter(buffer,armor_filter,&afx); - if(export_pubkeys_stream(buffer,key,1)==-1) + if(export_pubkeys_stream(buffer,temp,1)==-1) iobuf_close(buffer); else { |