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
b84a8723
...
b84a8723720c55581a4eb0100c5b483fc6adebe5
authored
2012-03-17 21:37:15 +0200
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Bugfix.
* libmu_dbm/berkeley.c (do_bdb_open): Fix typo.
1 parent
b4439f97
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
libmu_dbm/berkeley.c
libmu_dbm/berkeley.c
View file @
b84a872
...
...
@@ -108,7 +108,7 @@ do_bdb_open (mu_dbm_file_t mdb, int flags, int mode)
if
(
access
(
mdb
->
db_name
,
R_OK
)
&&
errno
==
ENOENT
)
{
tfd
=
open
(
mdb
->
db_name
,
O_CREAT
|
O_RDONLY
|
O_EXCL
,
mu_
file_mode_to_safety_criteria
(
mdb
->
db_safety_flags
));
mu_
safety_criteria_to_file_mode
(
mdb
->
db_safety_flags
));
if
(
tfd
==
-
1
)
{
mu_locker_destroy
(
&
bdb_file
->
locker
);
...
...
Please
register
or
sign in
to post a comment