| 227 | } |
| 228 | |
| 229 | enum fsmonitor_reason fsm_settings__get_reason(struct repository *r) |
| 230 | { |
| 231 | if (!r->settings.fsmonitor) |
| 232 | lookup_fsmonitor_settings(r); |
| 233 | |
| 234 | return r->settings.fsmonitor->reason; |
| 235 | } |
| 236 | |
| 237 | char *fsm_settings__get_incompatible_msg(struct repository *r, |
| 238 | enum fsmonitor_reason reason) |
no test coverage detected