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
9537190b
...
9537190b668de3f08ac4e12ce8e4bdc06e5675f1
authored
2004-01-11 19:49:25 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(amd_open,amd_close): Bugfix
1 parent
d631c949
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
4 deletions
mailbox/amd.c
mailbox/amd.c
View file @
9537190
...
...
@@ -209,9 +209,6 @@ amd_open (mailbox_t mailbox, int flags)
amd
->
mtime
=
st
.
st_mtime
;
/* FIXME: is this the right kind of locking for mh folders? */
if
(
mailbox
->
locker
==
NULL
)
status
=
locker_create
(
&
mailbox
->
locker
,
amd
->
name
,
0
);
return
0
;
}
...
...
@@ -220,7 +217,7 @@ amd_close (mailbox_t mailbox)
{
if
(
!
mailbox
)
return
EINVAL
;
return
locker_unlock
(
mailbox
->
locker
)
;
return
0
;
}
static
struct
_amd_message
*
...
...
Please
register
or
sign in
to post a comment