summaryrefslogtreecommitdiff
path: root/pkt-line.h
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2012-07-04 23:40:11 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2012-07-04 23:40:12 -0700
commit348c44e78eb079fa97a575f8fb8c1fcac747efe5 (patch)
treed165e016cd3067b04f0b6c4edb155ff423d84b0e /pkt-line.h
parentFix formatting in git-config(1) (diff)
parentremove the impression of unexpectedness when access is denied (diff)
downloadtgif-348c44e78eb079fa97a575f8fb8c1fcac747efe5.tar.xz
Merge branch 'hv/remote-end-hung-up'
When we get disconnected while expecting a response from the remote side because authentication failed, we issued an error message "The remote side hung up unexpectedly." Give hint that it may be a permission problem in the message when we can reasonably suspect it. * hv/remote-end-hung-up: remove the impression of unexpectedness when access is denied
Diffstat (limited to 'pkt-line.h')
-rw-r--r--pkt-line.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkt-line.h b/pkt-line.h
index 1e5dcfe87c..8cfeb0c31c 100644
--- a/pkt-line.h
+++ b/pkt-line.h
@@ -13,6 +13,7 @@ void packet_buf_flush(struct strbuf *buf);
void packet_buf_write(struct strbuf *buf, const char *fmt, ...) __attribute__((format (printf, 2, 3)));
int packet_read_line(int fd, char *buffer, unsigned size);
+int packet_read(int fd, char *buffer, unsigned size);
int packet_get_line(struct strbuf *out, char **src_buf, size_t *src_len);
ssize_t safe_write(int, const void *, ssize_t);