We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e265eb2 commit aad497cCopy full SHA for aad497c
src/streams/openssl_dynamic.c
@@ -122,7 +122,9 @@ int git_openssl_stream_dynamic_init(void)
122
int err = 0;
123
124
if ((openssl_handle = dlopen("libssl.so.1.1", RTLD_NOW)) == NULL &&
125
+ (openssl_handle = dlopen("libssl.1.1.dylib", RTLD_NOW)) == NULL &&
126
(openssl_handle = dlopen("libssl.so.1.0.0", RTLD_NOW)) == NULL &&
127
+ (openssl_handle = dlopen("libssl.1.0.0.dylib", RTLD_NOW)) == NULL &&
128
(openssl_handle = dlopen("libssl.so.10", RTLD_NOW)) == NULL) {
129
git_error_set(GIT_ERROR_SSL, "could not load ssl libraries");
130
return -1;
0 commit comments