| 75 | static unsigned int allow_unadvertised_object_request; |
| 76 | |
| 77 | __attribute__((format (printf, 2, 3))) |
| 78 | static inline void print_verbose(const struct fetch_pack_args *args, |
| 79 | const char *fmt, ...) |
| 80 | { |
| 81 | va_list params; |
| 82 | |
| 83 | if (!args->verbose) |
| 84 | return; |
| 85 | |
| 86 | va_start(params, fmt); |
| 87 | vfprintf(stderr, fmt, params); |
| 88 | va_end(params); |
| 89 | fputc('\n', stderr); |
| 90 | } |
| 91 | |
| 92 | struct alternate_object_cache { |
| 93 | struct object **items; |
no outgoing calls
no test coverage detected