Explorar el Código

take back half of my bugfix. comparing times sucks.
but leave the other half.


svn:r5495

Roger Dingledine hace 20 años
padre
commit
7d032bd300
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/or/circuituse.c

+ 1 - 1
src/or/circuituse.c

@@ -241,7 +241,7 @@ circuit_expire_building(time_t now)
           /* c_rend_ready circs measure age since timestamp_dirty,
            * because that's set when they switch purposes
            */
-          if (!victim->rend_query[0] || victim->timestamp_dirty <= cutoff)
+          if (!victim->rend_query[0] || victim->timestamp_dirty > cutoff)
             continue;
           break;
         case CIRCUIT_PURPOSE_C_REND_READY_INTRO_ACKED: