| 367 | } |
| 368 | |
| 369 | int refs_fsck(struct ref_store *refs, struct fsck_options *o, |
| 370 | struct worktree *wt) |
| 371 | { |
| 372 | if (o->verbose) |
| 373 | fprintf_ln(stderr, _("Checking references consistency")); |
| 374 | |
| 375 | return refs->be->fsck(refs, o, wt); |
| 376 | } |
| 377 | |
| 378 | void sanitize_refname_component(const char *refname, struct strbuf *out) |
| 379 | { |
no test coverage detected