README.chromium 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. Name: Tomcat Native Fork for Netty
  2. Short Name: netty-tcnative
  3. URL: https://github.com/netty/netty-tcnative.git
  4. Version: 2.0.0.Final
  5. Date: March 9, 2017
  6. Revision: 28d9d70090f1b18927f4554621648cc1922d6e05
  7. License: Apache 2.0
  8. License File: NOT_SHIPPED
  9. Security Critical: no
  10. The library is not security critical because it is used for tests only.
  11. Do not link it into production code.
  12. Description:
  13. netty-tcnative is a fork of Tomcat Native. It includes a set of changes contributed
  14. by Twitter, Inc, such as:
  15. Simplified distribution and linkage of native library
  16. Complete mavenization of the project
  17. Improved OpenSSL support
  18. Local Modifications:
  19. diff --git a/c/sslcontext.c b/c/sslcontext.c
  20. index 5668298..25bfb6e 100644
  21. --- a/c/sslcontext.c
  22. +++ b/c/sslcontext.c
  23. @@ -1178,7 +1178,7 @@ static int SSL_cert_verify(X509_STORE_CTX *ctx, void *arg) {
  24. tcn_ssl_ctxt_t *c = SSL_get_app_data2(ssl);
  25. TCN_ASSERT(c != NULL);
  26. tcn_ssl_verify_config_t* verify_config = SSL_get_app_data4(ssl);
  27. - TCN_ASSERT(verify_confg != NULL);
  28. + TCN_ASSERT(verify_config != NULL);
  29. // Get a stack of all certs in the chain
  30. STACK_OF(X509) *sk = ctx->untrusted;