summaryrefslogtreecommitdiff
path: root/usr.sbin/nginx
diff options
context:
space:
mode:
authorTed Unangst <tedu@cvs.openbsd.org>2014-04-29 14:10:08 +0000
committerTed Unangst <tedu@cvs.openbsd.org>2014-04-29 14:10:08 +0000
commitff7f4efc2ac74cefaa99fa084816ff5a5adc5d9e (patch)
treea123dab72625fe1e343fb6173d2717cdb210ae9c /usr.sbin/nginx
parent81fc989e736956fa6ea3b9c4f9248f7508a29d7d (diff)
nginx dudes unrolled SSL_OP_ALL by hand so we also have to delete
SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS from here to benefit. ok miod
Diffstat (limited to 'usr.sbin/nginx')
-rw-r--r--usr.sbin/nginx/src/event/ngx_event_openssl.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/usr.sbin/nginx/src/event/ngx_event_openssl.c b/usr.sbin/nginx/src/event/ngx_event_openssl.c
index 915e604bbbc..81a1e42d81c 100644
--- a/usr.sbin/nginx/src/event/ngx_event_openssl.c
+++ b/usr.sbin/nginx/src/event/ngx_event_openssl.c
@@ -192,8 +192,6 @@ ngx_ssl_create(ngx_ssl_t *ssl, ngx_uint_t protocols, void *data)
SSL_CTX_set_options(ssl->ctx, SSL_OP_TLS_D5_BUG);
SSL_CTX_set_options(ssl->ctx, SSL_OP_TLS_BLOCK_PADDING_BUG);
- SSL_CTX_set_options(ssl->ctx, SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS);
-
SSL_CTX_set_options(ssl->ctx, SSL_OP_SINGLE_DH_USE);
if (!(protocols & NGX_SSL_SSLv2)) {