From b0a4fcce8ce2728f42b6d97a5ed064c1b64be547 Mon Sep 17 00:00:00 2001 From: allo Date: Wed, 20 Sep 2006 18:03:24 +0000 Subject: [PATCH] fix from theli git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@2642 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- source/de/anomic/server/serverFileUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/de/anomic/server/serverFileUtils.java b/source/de/anomic/server/serverFileUtils.java index 974994b24..f35b56133 100644 --- a/source/de/anomic/server/serverFileUtils.java +++ b/source/de/anomic/server/serverFileUtils.java @@ -76,7 +76,7 @@ public final class serverFileUtils { private static final int DEFAULT_BUFFER_SIZE = 4096; public static long copy(InputStream source, OutputStream dest) throws IOException { - return copy(source,dest); + return copy(source,dest, -1); } /**