| 274 | } |
| 275 | |
| 276 | static void check_no_capabilities(const char *line, size_t len) |
| 277 | { |
| 278 | if (strlen(line) != len) |
| 279 | warning(_("ignoring capabilities after first line '%s'"), |
| 280 | line + strlen(line)); |
| 281 | } |
| 282 | |
| 283 | static int process_ref(const struct packet_reader *reader, size_t len, |
| 284 | struct ref ***list, unsigned int flags, |
no test coverage detected