| 286 | } |
| 287 | |
| 288 | void packet_buf_write(struct strbuf *buf, const char *fmt, ...) |
| 289 | { |
| 290 | va_list args; |
| 291 | |
| 292 | va_start(args, fmt); |
| 293 | format_packet(buf, "", fmt, args); |
| 294 | va_end(args); |
| 295 | } |
| 296 | |
| 297 | int write_packetized_from_fd_no_flush(int fd_in, int fd_out) |
| 298 | { |
no test coverage detected