summaryrefslogtreecommitdiff
path: root/src/global.h
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/global.h
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/global.h')
-rw-r--r--src/global.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/global.h b/src/global.h
index f56bec46c..fdad6ba89 100644
--- a/src/global.h
+++ b/src/global.h
@@ -17,7 +17,7 @@ typedef struct {
char oid_fmt[GIT_OID_HEXSZ+1];
} git_global_st;
-#ifdef GIT_SSL
+#ifdef GIT_OPENSSL
# include <openssl/ssl.h>
extern SSL_CTX *git__ssl_ctx;
#endif