X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/7bccf0fe85dabc44d168fd2f42f458911e7c4d98..c6940f12e2ad6ba778324f50b9a779db36238518:/cmdgen.c diff --git a/cmdgen.c b/cmdgen.c index dfca9dce..d8d5a946 100644 --- a/cmdgen.c +++ b/cmdgen.c @@ -893,7 +893,7 @@ int main(int argc, char **argv) assert(ssh1key); if (outfile) - fp = f_open(outfilename, "w"); + fp = f_open(outfilename, "w", FALSE); else fp = stdout; dec1 = bignum_decimal(ssh1key->exponent); @@ -951,7 +951,7 @@ int main(int argc, char **argv) *p++ = '\0'; if (outfile) - fp = f_open(outfilename, "w"); + fp = f_open(outfilename, "w", FALSE); else fp = stdout; fprintf(fp, "%s\n", buffer); @@ -981,7 +981,7 @@ int main(int argc, char **argv) } if (outfile) - fp = f_open(outfilename, "w"); + fp = f_open(outfilename, "w", FALSE); else fp = stdout; fprintf(fp, "%s\n", fingerprint);