346014 Fixed full HttpGenerator

git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@3158 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
Greg Wilkins 2011-05-16 23:42:26 +00:00
parent e5f549664e
commit c004175909
2 changed files with 2 additions and 1 deletions

View File

@ -2,6 +2,7 @@ jetty-7.4.2-SNAPSHOT
+ 345729 binding for managing server and system classes globally
+ 345615 Enable SSL Session caching
+ 345763 Source file is updated during the build
+ 346014 Fixed full HttpGenerator
jetty-7.4.1.v20110513
+ 288563 remove unsupported and deprecated --secure option

View File

@ -171,7 +171,7 @@ public class HttpGenerator extends AbstractGenerator
Buffer nc=_buffers.getBuffer(_content.length()+content.length());
nc.put(_content);
nc.put(content);
_content=nc;
content=nc;
}
}