Update of /cvsroot/freenet/freenet/src/freenet/message
In directory sc8-pr-cvs1:/tmp/cvs-serv7638/src/freenet/message

Modified Files:
        DataSend.java 
Log Message:
6281: minor bugfix relating to key collisions


Index: DataSend.java
===================================================================
RCS file: /cvsroot/freenet/freenet/src/freenet/message/DataSend.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -w -r1.9 -r1.10
--- DataSend.java       24 Oct 2003 02:24:58 -0000      1.9
+++ DataSend.java       25 Oct 2003 19:41:02 -0000      1.10
@@ -139,7 +139,8 @@
        try {
            out = n.ds.putData(searchKey, length, storables);
        } catch (IOException e) {
-           throw new StoreIOException(e);
+           if(e instanceof StoreIOException) throw e;
+           else throw new StoreIOException(e);
        }
         return new ReceiveData(n.randSource.nextLong(), this.id, vis, out, length);
     }

_______________________________________________
cvs mailing list
[EMAIL PROTECTED]
http://dodo.freenetproject.org/cgi-bin/mailman/listinfo/cvs

Reply via email to