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:
parent
4b6f0055b4
commit
ee3f955709
2 changed files with 7 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue