| 112 | } |
| 113 | |
| 114 | int packet_flush_gently(int fd) |
| 115 | { |
| 116 | packet_trace("0000", 4, 1); |
| 117 | if (write_in_full(fd, "0000", 4) < 0) |
| 118 | return error(_("flush packet write failed")); |
| 119 | return 0; |
| 120 | } |
| 121 | |
| 122 | void packet_buf_flush(struct strbuf *buf) |
| 123 | { |
no test coverage detected