* Freshen an object in the object database by updating its timestamp. * Returns 1 in case the object has been freshened, 0 in case the object does * not exist. */
| 396 | * not exist. |
| 397 | */ |
| 398 | static inline int odb_source_freshen_object(struct odb_source *source, |
| 399 | const struct object_id *oid) |
| 400 | { |
| 401 | return source->freshen_object(source, oid); |
| 402 | } |
| 403 | |
| 404 | /* |
| 405 | * Write an object into the object database source. Returns 0 on success, a |
no outgoing calls