~ubuntu-branches/ubuntu/maverick/tomcat6/maverick

« back to all changes in this revision

Viewing changes to debian/patches/0003-disable-APR-library-loading.patch

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2010-06-28 21:41:31 UTC
  • mfrom: (2.2.15 sid)
  • Revision ID: james.westby@ubuntu.com-20100628214131-3wktukpb3lgdf83h
Tags: 6.0.26-5
* Convert patches to dep3 format.
* Backport security fix from trunk to fix CVE-2010-1157. (Closes: #587447)
* Set urgency to medium due to the security fix.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
From: Thierry Carrez <thierry.carrez@ubuntu.com>
 
2
Date: Mon, 28 Jun 2010 21:32:28 +0200
 
3
Subject: [PATCH] disable APR library loading
 
4
 
 
5
    ... until we properly provide it.
 
6
---
 
7
 conf/server.xml |    2 ++
 
8
 1 files changed, 2 insertions(+), 0 deletions(-)
 
9
 
 
10
diff --git a/conf/server.xml b/conf/server.xml
 
11
index 500e39a..155b664 100644
 
12
--- a/conf/server.xml
 
13
+++ b/conf/server.xml
 
14
@@ -22,7 +22,9 @@
 
15
 <Server port="8005" shutdown="SHUTDOWN">
 
16
 
 
17
   <!--APR library loader. Documentation at /docs/apr.html -->
 
18
+  <!--
 
19
   <Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="on" />
 
20
+  -->
 
21
   <!--Initialize Jasper prior to webapps are loaded. Documentation at /docs/jasper-howto.html -->
 
22
   <Listener className="org.apache.catalina.core.JasperListener" />
 
23
   <!-- Prevent memory leaks due to use of particular java/javax APIs-->
 
24
--