We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3ef11e commit 766b4ddCopy full SHA for 766b4dd
src/settings.c
@@ -176,7 +176,7 @@ int git_libgit2_opts(int key, ...)
176
error = git_openssl__set_cert_location(file, path);
177
}
178
#else
179
- giterr_set(GITERR_NET, "cannot set certificate locations: OpenSSL is not enabled");
+ giterr_set(GITERR_SSL, "TLS backend doesn't support certificate locations");
180
error = -1;
181
#endif
182
break;
@@ -209,7 +209,7 @@ int git_libgit2_opts(int key, ...)
209
210
211
212
- giterr_set(GITERR_NET, "cannot set custom ciphers: OpenSSL is not enabled");
+ giterr_set(GITERR_SSL, "TLS backend doesn't support custom ciphers");
213
214
215
0 commit comments