Update of /cvsroot/freenet/freenet/src/freenet/node/states/announcing
In directory sc8-pr-cvs1:/tmp/cvs-serv28920/src/freenet/node/states/announcing

Modified Files:
        NewInitialRequest.java 
Log Message:
6353:
When we send out maintenance requests, when we get FCP or internal requests with skip 
datastore enabled:
Don't actually delete the key from the datastore... just ignore the fact that it's 
already there. The commit will fail, unless the original one didn't work.

Index: NewInitialRequest.java
===================================================================
RCS file: 
/cvsroot/freenet/freenet/src/freenet/node/states/announcing/NewInitialRequest.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -w -r1.7 -r1.8
--- NewInitialRequest.java      21 Nov 2003 21:12:44 -0000      1.7
+++ NewInitialRequest.java      22 Nov 2003 20:48:48 -0000      1.8
@@ -55,7 +55,7 @@
             throw new BadStateException("Expecting MakeInitialRequest");
         RequestInitiator ri = new RequestInitiator(id,
                                                    System.currentTimeMillis());
-        return (new DataPending(id, htl, key, null, ft, ri, false)).received(n, ri);
+        return (new DataPending(id, htl, key, null, ft, ri, false, 
false)).received(n, ri);
     }
 
     public void lost(Node n) {

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

Reply via email to