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
67a7136c
Commit
67a7136c
authored
May 05, 2013
by
Brad Morgan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Renaming
parent
3eed595e
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
src/transports/ssh.c
+6
-6
No files found.
src/transports/ssh.c
View file @
67a7136c
...
...
@@ -446,7 +446,7 @@ static int _git_receivepack(
return
-
1
;
}
static
int
_
git
_action
(
static
int
_
ssh
_action
(
git_smart_subtransport_stream
**
stream
,
git_smart_subtransport
*
subtransport
,
const
char
*
url
,
...
...
@@ -472,7 +472,7 @@ static int _git_action(
return
-
1
;
}
static
int
_
git
_close
(
git_smart_subtransport
*
subtransport
)
static
int
_
ssh
_close
(
git_smart_subtransport
*
subtransport
)
{
ssh_subtransport
*
t
=
(
ssh_subtransport
*
)
subtransport
;
...
...
@@ -483,7 +483,7 @@ static int _git_close(git_smart_subtransport *subtransport)
return
0
;
}
static
void
_
git
_free
(
git_smart_subtransport
*
subtransport
)
static
void
_
ssh
_free
(
git_smart_subtransport
*
subtransport
)
{
ssh_subtransport
*
t
=
(
ssh_subtransport
*
)
subtransport
;
...
...
@@ -503,9 +503,9 @@ int git_smart_subtransport_ssh(git_smart_subtransport **out, git_transport *owne
GITERR_CHECK_ALLOC
(
t
);
t
->
owner
=
(
transport_smart
*
)
owner
;
t
->
parent
.
action
=
_
git
_action
;
t
->
parent
.
close
=
_
git
_close
;
t
->
parent
.
free
=
_
git
_free
;
t
->
parent
.
action
=
_
ssh
_action
;
t
->
parent
.
close
=
_
ssh
_close
;
t
->
parent
.
free
=
_
ssh
_free
;
*
out
=
(
git_smart_subtransport
*
)
t
;
return
0
;
...
...
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