Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
23424f43
Commit
23424f43
authored
May 20, 2023
by
Edward Thomson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ssh: don't capture stderr
Don't capture stderr, optimize for the CLI case.
parent
bc124bb4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
src/libgit2/transports/ssh_exec.c
+3
-2
No files found.
src/libgit2/transports/ssh_exec.c
View file @
23424f43
...
...
@@ -45,8 +45,9 @@ static int ssh_exec_subtransport_stream_read(
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
;
}
*
bytes_read
=
(
size_t
)
ret
;
return
0
;
...
...
@@ -129,7 +130,7 @@ static int start_ssh(
process_opts
.
capture_in
=
1
;
process_opts
.
capture_out
=
1
;
process_opts
.
capture_err
=
1
;
process_opts
.
capture_err
=
0
;
switch
(
action
)
{
case
GIT_SERVICE_UPLOADPACK_LS
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment