summaryrefslogtreecommitdiff
path: root/src/tls_stream.c
diff options
context:
space:
mode:
authorCarlos Martín Nieto <cmn@dwim.me>2015-03-19 09:55:20 +0100
committerCarlos Martín Nieto <cmn@dwim.me>2015-04-23 17:39:51 +0200
commit24e53d2fba1ea10c27c3b19f202dc92cabedf0ed (patch)
tree1b57e5a07b017724a6cf8ac06e17e957099bf419 /src/tls_stream.c
parent70b852cee2c9e87588d65581e13c9e65b255cecf (diff)
downloadlibgit2-24e53d2fba1ea10c27c3b19f202dc92cabedf0ed.tar.gz
Rename GIT_SSL to GIT_OPENSSL
This is what it's meant all along, but now we actually have multiple implementations, it's clearer to use the name of the library.
Diffstat (limited to 'src/tls_stream.c')
-rw-r--r--src/tls_stream.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tls_stream.c b/src/tls_stream.c
index d44709af4..39a8ce343 100644
--- a/src/tls_stream.c
+++ b/src/tls_stream.c
@@ -15,7 +15,7 @@ int git_tls_stream_new(git_stream **out, const char *host, const char *port)
{
#ifdef GIT_SECURE_TRANSPORT
return git_stransport_stream_new(out, host, port);
-#elif defined(GIT_SSL)
+#elif defined(GIT_OPENSSL)
return git_openssl_stream_new(out, host, port);
#else
GIT_UNUSED(out);