git-svn-id: https://svn.apache.org/repos/asf/tomcat/tc6.0.x/trunk@500626
13f79535-47bb-0310-9956-
ffa450edef68
cookie.setMaxAge(-1);
cookie.setPath("/");
+ // Bugzilla 41217
+ cookie.setSecure(request.isSecure());
+
// Bugzilla 34724
String ssoDomain = sso.getCookieDomain();
if(ssoDomain != null) {
Fix error messages when parsing context.xml that incorrectly referred to
web.xml. (markt)
</fix>
+ <fix>
+ <bug>41217</bug>: Set secure attribute on SSO cookie when cookie is
+ created during a secure request. Patch provided by Chris Halstead.
+ (markt)
+ </fix>
</changelog>
</subsection>
<subsection name="Jasper">