Commit 4347d2ab 4347d2abe1377d62fc2ad6d384b9bda8928b5fb7 by Sean 'Shaleh' Perry

fdopen(ofile) is no longer called "w+", just plain "w"

1 parent f564df74
Sean 'Shaleh' Perry <shaleh@debian.org> Wed, 6 Oct 1999 13:55:42 -0700
* Cleanup some compilation issues
* changed "w+" to "w" in called to pop3_mainloop():ofile = fdopen()
why was it called with w+? It is only ever used for writing.
Sean 'Shaleh' Perry <shaleh@debian.org> Tue, 5 Oct 1999 23:06:33 -0700
......
......@@ -182,7 +182,7 @@ pop3_mainloop (int infile, int outfile)
char *local_hostname;
ifile = infile;
ofile = fdopen (outfile, "w+");
ofile = fdopen (outfile, "w");
if (ofile == NULL)
pop3_abquit (ERR_NO_OFILE);
state = AUTHORIZATION;
......