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
18a31294
...
18a3129437cb286014a9bea8a5f5130c3c9a0e8b
authored
2001-10-03 06:58:27 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Fixed funny bug in attribute_{set,clear}_modified
1 parent
213689c8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
mailbox/attribute.c
mailbox/attribute.c
View file @
18a3129
...
...
@@ -73,7 +73,7 @@ attribute_is_modified (attribute_t attr)
int
attribute_clear_modified
(
attribute_t
attr
)
{
if
(
!
attr
)
if
(
attr
)
attr
->
flags
&=
~
MU_ATTRIBUTE_MODIFIED
;
return
0
;
}
...
...
@@ -81,7 +81,7 @@ attribute_clear_modified (attribute_t attr)
int
attribute_set_modified
(
attribute_t
attr
)
{
if
(
!
attr
)
if
(
attr
)
attr
->
flags
|=
MU_ATTRIBUTE_MODIFIED
;
return
0
;
}
...
...
Please
register
or
sign in
to post a comment