diff options
Diffstat (limited to 'keyserver/gpgkeys_hkp.c')
-rw-r--r-- | keyserver/gpgkeys_hkp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/keyserver/gpgkeys_hkp.c b/keyserver/gpgkeys_hkp.c index ab766b50e..92aa05800 100644 --- a/keyserver/gpgkeys_hkp.c +++ b/keyserver/gpgkeys_hkp.c @@ -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; } } |