summaryrefslogtreecommitdiff
path: root/src/openssl_stream.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/openssl_stream.c')
-rw-r--r--src/openssl_stream.c2
1 files changed, 1 insertions, 1 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)