8000
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.
2 parents d0da681 + dd65bfe commit dbc19dcCopy full SHA for dbc19dc
src/libgit2/transports/auth_sspi.c
@@ -324,18 +324,22 @@ static int sspi_init_context(
324
return 0;
325
}
326
327
+#ifdef GIT_AUTH_NEGOTIATE
328
int git_http_auth_negotiate(
329
git_http_auth_context **out,
330
const git_net_url *url)
331
{
332
return sspi_init_context(out, GIT_HTTP_AUTH_NEGOTIATE, url);
333
334
+#endif
335
336
+#ifdef GIT_AUTH_NTLM
337
int git_http_auth_ntlm(
338
339
340
341
return sspi_init_context(out, GIT_HTTP_AUTH_NTLM, url);
342
343
344
345
#endif /* GIT_WIN32 */
0 commit comments