summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarlos Martín Nieto <cmn@dwim.me>2015-06-26 18:11:05 +0200
committerCarlos Martín Nieto <cmn@dwim.me>2015-06-26 18:11:05 +0200
commitcfafeb843d3512d2bc06a80511c51bbc70897ac4 (patch)
tree7be2ae2affedafd44b84a8d16214cfe71dab9d03 /src
parent354268ca488fc89346d5874b446510f0cc89c007 (diff)
parent492851c9a2f98f44d34e5400a4c2ab8a29e312a7 (diff)
downloadlibgit2-cfafeb843d3512d2bc06a80511c51bbc70897ac4.tar.gz
Merge pull request #3263 from git-up/fixes
Fixes
Diffstat (limited to 'src')
-rw-r--r--src/openssl_stream.c2
-rw-r--r--src/stransport_stream.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/openssl_stream.c b/src/openssl_stream.c
index 412dee739..90af4ae6e 100644
--- a/src/openssl_stream.c
+++ b/src/openssl_stream.c
@@ -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)
diff --git a/src/stransport_stream.c b/src/stransport_stream.c
index bbc2d32d6..10e19166c 100644
--- a/src/stransport_stream.c
+++ b/src/stransport_stream.c
@@ -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){