MCPcopy Create free account
hub / github.com/git/git / packet_writer_error

Function packet_writer_error

pkt-line.c:693–701  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

691}
692
693void packet_writer_error(struct packet_writer *writer, const char *fmt, ...)
694{
695 va_list args;
696
697 va_start(args, fmt);
698 packet_write_fmt_1(writer->dest_fd, 0,
699 writer->use_sideband ? "\003" : "ERR ", fmt, args);
700 va_end(args);
701}
702
703void packet_writer_delim(struct packet_writer *writer)
704{

Callers 7

check_non_tipFunction · 0.85
send_err_and_dieFunction · 0.85
receive_needsFunction · 0.85
parse_wantFunction · 0.85
parse_want_refFunction · 0.85
send_infoFunction · 0.85
cap_object_infoFunction · 0.85

Calls 1

packet_write_fmt_1Function · 0.85

Tested by

no test coverage detected