| 656 | } |
| 657 | |
| 658 | static void init_submodule_cb(const struct cache_entry *list_item, void *cb_data) |
| 659 | { |
| 660 | struct init_cb *info = cb_data; |
| 661 | |
| 662 | init_submodule(list_item->name, info->prefix, info->super_prefix, |
| 663 | info->flags); |
| 664 | } |
| 665 | |
| 666 | static int module_init(int argc, const char **argv, const char *prefix, |
| 667 | struct repository *repo UNUSED) |
nothing calls this directly
no test coverage detected