Author: toad
Date: 2009-04-03 14:00:54 +0000 (Fri, 03 Apr 2009)
New Revision: 26436

Modified:
   trunk/freenet/src/freenet/client/async/MultiPutCompletionCallback.java
Log:
Doh, wrong way around


Modified: trunk/freenet/src/freenet/client/async/MultiPutCompletionCallback.java
===================================================================
--- trunk/freenet/src/freenet/client/async/MultiPutCompletionCallback.java      
2009-04-03 14:00:29 UTC (rev 26435)
+++ trunk/freenet/src/freenet/client/async/MultiPutCompletionCallback.java      
2009-04-03 14:00:54 UTC (rev 26436)
@@ -126,7 +126,7 @@
                        finished = true;
                        if(e != null && this.e != null && this.e != e) {
                                if(persistent) container.activate(this.e, 10);
-                               if(!(e.getMode() == InsertException.CANCELLED)) 
{ // Cancelled is okay, ignore it, we cancel after failure sometimes.
+                               if(e.getMode() == InsertException.CANCELLED) { 
// Cancelled is okay, ignore it, we cancel after failure sometimes.
                                        // Ignore the new failure mode, use the 
old one
                                        e = this.e;
                                } else {

_______________________________________________
cvs mailing list
[email protected]
http://emu.freenetproject.org/cgi-bin/mailman/listinfo/cvs

Reply via email to