You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@apache.org on 2003/06/02 15:30:53 UTC

cvs commit: httpd-2.0/modules/ssl mod_ssl.c

wrowe       2003/06/02 06:30:53

  Modified:    modules/ssl mod_ssl.c
  Log:
    The right patch (thanks to Eric for identifying the wrong patch) to move
    SSL_library_init() into the register hooks phase.  OpenSSL_add_ssl_algorithms
    devolves to SSL_library_init, which is the same for most toolkits (and would
    be accomodated in ssl_toolkit_config.h if not.)
  
  Revision  Changes    Path
  1.83      +1 -1      httpd-2.0/modules/ssl/mod_ssl.c
  
  Index: mod_ssl.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/ssl/mod_ssl.c,v
  retrieving revision 1.82
  retrieving revision 1.83
  diff -u -r1.82 -r1.83
  --- mod_ssl.c	31 May 2003 19:29:47 -0000	1.82
  +++ mod_ssl.c	2 Jun 2003 13:30:53 -0000	1.83
  @@ -240,7 +240,7 @@
        */
       CRYPTO_malloc_init();
       ERR_load_crypto_strings();
  -    OpenSSL_add_all_algorithms();
  +    SSL_library_init();
   #if HAVE_ENGINE_LOAD_BUILTIN_ENGINES
       ENGINE_load_builtin_engines();
   #endif