Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
David Barchiesi
OpenLDAP
Commits
2072ae6a
Commit
2072ae6a
authored
Jan 27, 2015
by
Hallvard Furuseth
Browse files
Fix EACCES description
parent
b0032feb
Changes
1
Hide whitespace changes
Inline
Side-by-side
libraries/liblmdb/lmdb.h
View file @
2072ae6a
...
...
@@ -1450,7 +1450,7 @@ int mdb_cursor_get(MDB_cursor *cursor, MDB_val *key, MDB_val *data,
* <ul>
* <li>#MDB_MAP_FULL - the database is full, see #mdb_env_set_mapsize().
* <li>#MDB_TXN_FULL - the transaction has too many dirty pages.
* <li>EACCES - an attempt was made to
modify
a read-only
database
.
* <li>EACCES - an attempt was made to
write in
a read-only
transaction
.
* <li>EINVAL - an invalid parameter was specified.
* </ul>
*/
...
...
@@ -1470,7 +1470,7 @@ int mdb_cursor_put(MDB_cursor *cursor, MDB_val *key, MDB_val *data,
* @return A non-zero error value on failure and 0 on success. Some possible
* errors are:
* <ul>
* <li>EACCES - an attempt was made to
modify
a read-only
database
.
* <li>EACCES - an attempt was made to
write in
a read-only
transaction
.
* <li>EINVAL - an invalid parameter was specified.
* </ul>
*/
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment