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
cae2a555
Commit
cae2a555
authored
Jun 26, 2015
by
Pierre-Olivier Latour
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed build failure if GIT_CURL is not defined
parent
14888070
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
src/openssl_stream.c
+1
-1
src/stransport_stream.c
+1
-1
No files found.
src/openssl_stream.c
View file @
cae2a555
...
...
@@ -429,7 +429,7 @@ int git_openssl_stream_new(git_stream **out, const char *host, const char *port)
#ifdef GIT_CURL
error
=
git_curl_stream_new
(
&
st
->
io
,
host
,
port
);
#else
error
=
git_socket_stream_new
(
&
st
->
io
,
host
,
port
)
error
=
git_socket_stream_new
(
&
st
->
io
,
host
,
port
)
;
#endif
if
(
error
<
0
)
...
...
src/stransport_stream.c
View file @
cae2a555
...
...
@@ -244,7 +244,7 @@ int git_stransport_stream_new(git_stream **out, const char *host, const char *po
#ifdef GIT_CURL
error
=
git_curl_stream_new
(
&
st
->
io
,
host
,
port
);
#else
error
=
git_socket_stream_new
(
&
st
->
io
,
host
,
port
)
error
=
git_socket_stream_new
(
&
st
->
io
,
host
,
port
)
;
#endif
if
(
error
<
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