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
ba4aecd2
...
ba4aecd20ec81021349f54733acc4ac497d90f67
authored
2001-09-07 03:49:39 +0000
by
Alain Magloire
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
* mailbox/folder_mbox.c (folder_mbox_open): Implemeted.
1 parent
79983b06
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletions
ChangeLog
mailbox/folder_mbox.c
ChangeLog
View file @
ba4aecd
2001-09-06 Alain Magloire
* mailbox/folder_mbox.c (folder_mbox_open): Implemeted.
2001-09-05 Sergey Poznyakoff
* MySql/MySql.h: New defines MHOST, MPORT, etc.
...
...
mailbox/folder_mbox.c
View file @
ba4aecd
...
...
@@ -23,6 +23,7 @@
#include <sys/types.h>
#include <dirent.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <string.h>
#include <glob.h>
...
...
@@ -163,7 +164,11 @@ folder_mbox_destroy (folder_t folder)
static
int
folder_mbox_open
(
folder_t
folder
,
int
flags
)
{
(
void
)(
folder
);
fmbox_t
fmbox
=
folder
->
data
;
if
(
flags
&
MU_STREAM_CREAT
)
{
return
(
mkdir
(
fmbox
->
dirname
,
S_IRWXU
)
==
0
)
?
0
:
errno
;
}
(
void
)(
flags
);
return
0
;
}
...
...
Please
register
or
sign in
to post a comment