| 90 | } |
| 91 | |
| 92 | static struct fsmonitor_settings *alloc_settings(void) |
| 93 | { |
| 94 | struct fsmonitor_settings *s; |
| 95 | |
| 96 | CALLOC_ARRAY(s, 1); |
| 97 | s->mode = FSMONITOR_MODE_DISABLED; |
| 98 | s->reason = FSMONITOR_REASON_UNTESTED; |
| 99 | |
| 100 | return s; |
| 101 | } |
| 102 | |
| 103 | static void lookup_fsmonitor_settings(struct repository *r) |
| 104 | { |
no outgoing calls
no test coverage detected