Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix backport.
  • Loading branch information
serhiy-storchaka committed Jan 31, 2024
commit 1352ca485f6ccfd50b8d6ef2cbda284a039e1c1e
2 changes: 1 addition & 1 deletion Modules/_ssl.c
Original file line number Diff line number Diff line change
Expand Up @@ -821,7 +821,7 @@ PySSL_SetError(PySSLSocket *sslsock, int ret, const char *filename, int lineno)
} else {
if (ERR_GET_LIB(e) == ERR_LIB_SSL &&
ERR_GET_REASON(e) == SSL_R_CERTIFICATE_VERIFY_FAILED) {
type = state->PySSLCertVerificationErrorObject;
type = PySSLCertVerificationErrorObject;
}
p = PY_SSL_ERROR_SYSCALL;
}
Expand Down