Skip to content

Commit 06671f4

Browse files
committed
fixup! add support for disabling SSL revocation checks in cURL
When comparing config keys, the key has been downcased already. So we have to compare it to an all-lowercase string. The buggy code has been identified by an unnamed colleague of Manuel Riezebosch. This fixes #1531 Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 05ca542 commit 06671f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

http.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ static int http_options(const char *var, const char *value, void *cb)
308308
return 0;
309309
}
310310

311-
if (!strcmp("http.schannel.checkRevoke", var)) {
311+
if (!strcmp("http.schannel.checkrevoke", var)) {
312312
http_schannel_check_revoke = git_config_bool(var, value);
313313
return 0;
314314
}

0 commit comments

Comments
 (0)