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
f5025cc5
...
f5025cc599c4bfa39618d94de2e02018cf26d65f
authored
2003-08-28 19:57:56 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Fixed _get_fd methods
1 parent
9e721937
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletions
mailbox/mapfile_stream.c
mailbox/mapfile_stream.c
View file @
f5025cc
...
...
@@ -235,9 +235,13 @@ _mapfile_flush (stream_t stream)
}
static
int
_mapfile_get_fd
(
stream_t
stream
,
int
*
pfd
)
_mapfile_get_fd
(
stream_t
stream
,
int
*
pfd
,
int
*
pfd2
)
{
struct
_mapfile_stream
*
mfs
=
stream_get_owner
(
stream
);
if
(
pfd2
)
return
ENOSYS
;
if
(
pfd
)
*
pfd
=
mfs
->
fd
;
return
0
;
...
...
Please
register
or
sign in
to post a comment