1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

(get_key): Fixed invalid use of fprintf without

format string.
This commit is contained in:
Werner Koch 2003-11-27 12:16:43 +00:00
parent 4b6f0055b4
commit ee3f955709
2 changed files with 7 additions and 2 deletions

View file

@ -279,14 +279,14 @@ get_key(char *getkey)
if(gotit)
{
fprintf(output,line);
fputs (line, output);
if(strncmp(line,END,strlen(END))==0)
break;
}
else
if(strncmp(line,BEGIN,strlen(BEGIN))==0)
{
fprintf(output,line);
fputs (line,output);
gotit=1;
}
}