Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
connect: teach client to recognize v1 server response
[gitweb.git]
/
pkt-line.c
diff --git
a/pkt-line.c
b/pkt-line.c
index 647bbd3bceda71f15fdf137a37f3fa53e6fa6d86..7006b35879529f5f1a26cb5b6a628fe28aebe6a7 100644
(file)
--- a/
pkt-line.c
+++ b/
pkt-line.c
@@
-188,6
+188,12
@@
static int packet_write_gently(const int fd_out, const char *buf, size_t size)
return 0;
}
+void packet_write(int fd_out, const char *buf, size_t size)
+{
+ if (packet_write_gently(fd_out, buf, size))
+ die_errno("packet write failed");
+}
+
void packet_buf_write(struct strbuf *buf, const char *fmt, ...)
{
va_list args;