| 249 | } |
| 250 | |
| 251 | static dav_error * dav_dbm_firstkey(dav_db *db, apr_datum_t *pkey) |
| 252 | { |
| 253 | apr_status_t status = apr_dbm_firstkey(db->file, pkey); |
| 254 | |
| 255 | return dav_fs_dbm_error(db, NULL, status); |
| 256 | } |
| 257 | |
| 258 | static dav_error * dav_dbm_nextkey(dav_db *db, apr_datum_t *pkey) |
| 259 | { |
no test coverage detected