Commit 23424f43 by Edward Thomson

ssh: don't capture stderr

Don't capture stderr, optimize for the CLI case.
parent bc124bb4
...@@ -45,8 +45,9 @@ static int ssh_exec_subtransport_stream_read( ...@@ -45,8 +45,9 @@ static int ssh_exec_subtransport_stream_read(
transport = (ssh_exec_subtransport *)stream->parent.subtransport; transport = (ssh_exec_subtransport *)stream->parent.subtransport;
if ((ret = git_process_read(transport->process, buffer, buf_size)) < 0) if ((ret = git_process_read(transport->process, buffer, buf_size)) < 0) {
return (int)ret; return (int)ret;
}
*bytes_read = (size_t)ret; *bytes_read = (size_t)ret;
return 0; return 0;
...@@ -129,7 +130,7 @@ static int start_ssh( ...@@ -129,7 +130,7 @@ static int start_ssh(
process_opts.capture_in = 1; process_opts.capture_in = 1;
process_opts.capture_out = 1; process_opts.capture_out = 1;
process_opts.capture_err = 1; process_opts.capture_err = 0;
switch (action) { switch (action) {
case GIT_SERVICE_UPLOADPACK_LS: case GIT_SERVICE_UPLOADPACK_LS:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment