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
2a86436d
...
2a86436dde010b804a4d360fe5c2c4ec1ca8f8d3
authored
2001-07-03 03:30:30 +0000
by
Alain Magloire
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
* mailbox2/pop3_stream.c: Use a buffered stream.
1 parent
ce118732
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
mailbox2/pop3/pop3_stream.c
mailbox2/pop3/pop3_stream.c
View file @
2a86436
...
...
@@ -48,11 +48,11 @@ pop3_get_stream (pop3_t pop3, stream_t *pstream)
if
(
pop3
->
stream
==
NULL
)
{
int
status
=
stream_tcp_create
(
&
(
pop3
->
stream
));
stream_t
stream
=
NULL
;
int
status
=
stream_tcp_create
(
&
stream
));
if
(
status
)
return
status
;
/* Using the awkward stream_t buffering. */
/* stream_setbufsiz (pop3->stream, 1024); */
stream_buffer_create
(
&
(
pop3
->
stream
),
stream
,
1024
);
*/
}
*
pstream
=
pop3
->
stream
;
return
0
;
...
...
Please
register
or
sign in
to post a comment