]> git.sur5r.net Git - openldap/commitdiff
Fix EACCES description
authorHallvard Furuseth <hallvard@openldap.org>
Tue, 27 Jan 2015 05:10:57 +0000 (06:10 +0100)
committerHallvard Furuseth <hallvard@openldap.org>
Sun, 19 Apr 2015 01:05:47 +0000 (03:05 +0200)
libraries/liblmdb/lmdb.h

index 117f16ea3120d3a67c8b9785c128200b11172710..1db8a58498d924afcff63f66c6bc5b91dff9dfb1 100644 (file)
@@ -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>
         */