mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-31 11:41:32 +01:00
* gpgkeys_hkp.c (get_key): Fixed bad use of fprintf w/o format
string.
This commit is contained in:
parent
78b2e8a17d
commit
5dc9a30878
@ -1,3 +1,8 @@
|
||||
2003-11-27 Werner Koch <wk@gnupg.org>
|
||||
|
||||
* gpgkeys_hkp.c (get_key): Fixed bad use of fprintf w/o format
|
||||
string.
|
||||
|
||||
2003-06-19 David Shaw <dshaw@jabberwocky.com>
|
||||
|
||||
* Makefile.am: Use W32LIBS where appropriate.
|
||||
|
@ -268,14 +268,14 @@ int get_key(char *getkey)
|
||||
|
||||
if(gotit)
|
||||
{
|
||||
fprintf(output,line);
|
||||
fputs (line, output);
|
||||
if(strcmp(line,"-----END PGP PUBLIC KEY BLOCK-----\n")==0)
|
||||
break;
|
||||
}
|
||||
else
|
||||
if(strcmp(line,"-----BEGIN PGP PUBLIC KEY BLOCK-----\n")==0)
|
||||
{
|
||||
fprintf(output,line);
|
||||
fputs (line, output);
|
||||
gotit=1;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user