| 1027 | } |
| 1028 | |
| 1029 | static int gitmodules_update_clone_config(const char *var, const char *value, |
| 1030 | const struct config_context *ctx, |
| 1031 | void *cb) |
| 1032 | { |
| 1033 | int *max_jobs = cb; |
| 1034 | if (!strcmp(var, "submodule.fetchjobs")) |
| 1035 | *max_jobs = parse_submodule_fetchjobs(var, value, ctx->kvi); |
| 1036 | return 0; |
| 1037 | } |
| 1038 | |
| 1039 | void update_clone_config_from_gitmodules(int *max_jobs) |
| 1040 | { |
nothing calls this directly
no test coverage detected