Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
4347d2ab
...
4347d2abe1377d62fc2ad6d384b9bda8928b5fb7
authored
1999-10-06 21:30:11 +0000
by
Sean 'Shaleh' Perry
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
fdopen(ofile) is no longer called "w+", just plain "w"
1 parent
f564df74
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletions
ChangeLog
pop3d/pop3d.c
ChangeLog
View file @
4347d2a
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
...
...
pop3d/pop3d.c
View file @
4347d2a
...
...
@@ -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
;
...
...
Please
register
or
sign in
to post a comment