summaryrefslogtreecommitdiff
path: root/src/transports/ssh.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/transports/ssh.c')
-rw-r--r--src/transports/ssh.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/transports/ssh.c b/src/transports/ssh.c
index 0d179e715..55f715b1d 100644
--- a/src/transports/ssh.c
+++ b/src/transports/ssh.c
@@ -129,10 +129,14 @@ static int ssh_stream_read(
return -1;
}
- /* Having something in stderr is typically a not-found error */
+ /*
+ * If we can't get anything out of stdout, it's typically a
+ * not-found error, so read from stderr and signal EOF on
+ * stderr.
+ */
if (rc == 0 && (rc = libssh2_channel_read_stderr(s->channel, buffer, buf_size)) > 0) {
giterr_set(GITERR_SSH, "%*s", rc, buffer);
- return -1;
+ return GIT_EEOF;
}