From: fhanik Date: Fri, 4 Aug 2006 22:19:38 +0000 (+0000) Subject: Fixed unwrap X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=b24c9fd385024fe76f408ddb1faa9779a28be867;p=tomcat7.0 Fixed unwrap git-svn-id: https://svn.apache.org/repos/asf/tomcat/tc6.0.x/trunk@428907 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/java/org/apache/tomcat/util/net/SecureNioChannel.java b/java/org/apache/tomcat/util/net/SecureNioChannel.java index efdb64882..30215019c 100644 --- a/java/org/apache/tomcat/util/net/SecureNioChannel.java +++ b/java/org/apache/tomcat/util/net/SecureNioChannel.java @@ -323,7 +323,7 @@ public class SecureNioChannel extends NioChannel { //in the constructor throw new IOException("Unable to unwrap data, invalid status: " + unwrap.getStatus()); } - } while ( (netInBuffer.position() != 0)); + } while ( (netInBuffer.position() != 0)); //continue to unwrapping as long as the input buffer has stuff return (read); }