| 661 | } |
| 662 | |
| 663 | static dav_error * dav_propdb_remove(dav_db *db, const dav_prop_name *name) |
| 664 | { |
| 665 | apr_datum_t key = dav_build_key(db, name); |
| 666 | return dav_dbm_delete(db, key); |
| 667 | } |
| 668 | |
| 669 | static int dav_propdb_exists(dav_db *db, const dav_prop_name *name) |
| 670 | { |
nothing calls this directly
no test coverage detected