Commit bf127eec4af43f9c40e4120a301547fa8a9692d4

Carlos Martín Nieto 2016-02-19T13:24:41

global: remove an unused variable

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
diff --git a/src/global.c b/src/global.c
index 4a61a06..c65b21a 100644
--- a/src/global.c
+++ b/src/global.c
@@ -22,14 +22,6 @@ git_mutex git__mwindow_mutex;
 
 #define MAX_SHUTDOWN_CB 8
 
-#ifdef GIT_OPENSSL
-# include <openssl/ssl.h>
-SSL_CTX *git__ssl_ctx;
-# ifdef GIT_THREADS
-static git_mutex *openssl_locks;
-# endif
-#endif
-
 static git_global_shutdown_fn git__shutdown_callbacks[MAX_SHUTDOWN_CB];
 static git_atomic git__n_shutdown_callbacks;
 static git_atomic git__n_inits;