| 256 | } |
| 257 | |
| 258 | static dav_error * dav_dbm_nextkey(dav_db *db, apr_datum_t *pkey) |
| 259 | { |
| 260 | apr_status_t status = apr_dbm_nextkey(db->file, pkey); |
| 261 | |
| 262 | return dav_fs_dbm_error(db, NULL, status); |
| 263 | } |
| 264 | |
| 265 | void dav_dbm_freedatum(dav_db *db, apr_datum_t data) |
| 266 | { |
no test coverage detected