Changeset 1903
- Timestamp:
- 08/26/08 11:48:20 (3 months ago)
- Files:
-
- cherokee/trunk/ChangeLog (modified) (1 diff)
- cherokee/trunk/cherokee/virtual_server.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
cherokee/trunk/ChangeLog
r1896 r1903 1 1 2008-08-25 Alvaro Lopez Ortega <alvaro@alobbs.com> 2 3 * cherokee/virtual_server.c: There was a wrong #ifdef that made 4 the build to fail if compiling without OpenSSL. Patch by Rui Lopes 5 <rgl@ruilopes.com> 2 6 3 7 * cherokee/http.h (http_method_with_input): PUT has also cherokee/trunk/cherokee/virtual_server.c
r1893 r1903 284 284 285 285 286 #ifdef HAVE_ TLS286 #ifdef HAVE_GNUTLS 287 287 static int 288 288 gnutls_sni_servername_cb (gnutls_session_t session, … … 338 338 return 0; 339 339 } 340 #endif 341 342 # ifdef HAVE_GNUTLS 340 343 341 static int 344 342 set_x509_key_file (cherokee_virtual_server_t *vsrv) … … 508 506 } 509 507 508 # ifndef OPENSSL_NO_TLSEXT 510 509 /* Enable SNI 511 510 */ … … 523 522 return ret_error; 524 523 } 524 # endif /* OPENSSL_NO_TLSEXT */ 525 525 # endif 526 526 #else