diff options
author | Clement Laforet <clement@FreeBSD.org> | 2005-07-26 08:25:13 +0000 |
---|---|---|
committer | Clement Laforet <clement@FreeBSD.org> | 2005-07-26 08:25:13 +0000 |
commit | 7a67d06cd1a129231ce8dbce0d92f688beca958b (patch) | |
tree | 08cb57c8b2b1b52db0d5b0ba46d68f770a0161b2 /www/apache2 | |
parent | d256d0ebf5fff741667227c363178bb398403f3b (diff) |
Notes
Diffstat (limited to 'www/apache2')
-rw-r--r-- | www/apache2/Makefile | 1 | ||||
-rw-r--r-- | www/apache2/files/patch-secfix-ssl_engine_kernel.c | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/www/apache2/Makefile b/www/apache2/Makefile index 0873160a4f3a..1d81c75dde42 100644 --- a/www/apache2/Makefile +++ b/www/apache2/Makefile @@ -9,6 +9,7 @@ PORTNAME= apache PORTVERSION= 2.0.54 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= ${MASTER_SITE_APACHE_HTTPD} \ ${MASTER_SITE_LOCAL:S/%SUBDIR%/clement/}:powerlogo diff --git a/www/apache2/files/patch-secfix-ssl_engine_kernel.c b/www/apache2/files/patch-secfix-ssl_engine_kernel.c new file mode 100644 index 000000000000..3b8be849954b --- /dev/null +++ b/www/apache2/files/patch-secfix-ssl_engine_kernel.c @@ -0,0 +1,11 @@ +--- modules/ssl/ssl_engine_kernel.c 2005/06/08 09:00:24 189561 ++++ modules/ssl/ssl_engine_kernel.c 2005/06/08 09:08:09 189562 +@@ -1398,7 +1398,7 @@ + BIO_printf(bio, ", nextUpdate: "); + ASN1_UTCTIME_print(bio, X509_CRL_get_nextUpdate(crl)); + +- n = BIO_read(bio, buff, sizeof(buff)); ++ n = BIO_read(bio, buff, sizeof(buff) - 1); + buff[n] = '\0'; + + BIO_free(bio); |