Updates after review by JacobBarthelmeh.

- fix err/ret rename leftover for python builds
- add documenetation to thread-local functions
- move generic queue functions up
This commit is contained in:
Stefan Eissing
2022-12-08 09:53:05 +01:00
parent 45f9ef5dd9
commit 02094ebb2e
2 changed files with 65 additions and 15 deletions

View File

@@ -33213,7 +33213,7 @@ unsigned long wolfSSL_ERR_peek_error_line_data(const char **file, int *line,
return (ERR_LIB_SSL << 24) | -SSL_R_HTTP_REQUEST;
#endif
#if defined(OPENSSL_ALL) && defined(WOLFSSL_PYTHON)
else if (ret == ASN1_R_HEADER_TOO_LONG)
else if (err == ASN1_R_HEADER_TOO_LONG)
return (ERR_LIB_ASN1 << 24) | ASN1_R_HEADER_TOO_LONG;
#endif
return err;