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
b40ad529
...
b40ad5292269f16073a3a2fd6ba5197b615d750b
authored
2001-01-04 06:17:01 +0000
by
Alain Magloire
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
forget to OR (|=) the flags when opening.
1 parent
588c43d9
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
mailbox/stream.c
mailbox/stream.c
View file @
b40ad52
...
...
@@ -91,7 +91,7 @@ stream_open (stream_t stream, const char *name, int port, int flags)
if
(
stream
==
NULL
)
return
EINVAL
;
stream
->
state
=
MU_STREAM_STATE_OPEN
;
stream
->
flags
=
flags
;
stream
->
flags
|
=
flags
;
if
(
stream
->
_open
)
return
stream
->
_open
(
stream
,
name
,
port
,
flags
);
return
0
;
...
...
Please
register
or
sign in
to post a comment