SMTP: Fix DoubleDotInputStream pushback size

git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@1187 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
mguessan 2010-07-13 17:03:29 +00:00
parent 4131c0f505
commit f51bc940cb
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ public class DoubleDotInputStream extends PushbackInputStream {
* @inheritDoc
*/
public DoubleDotInputStream(InputStream in) {
super(in, 3);
super(in, 4);
}
/**