Преглед на файлове

r16124@catbus: nickm | 2007-10-24 22:11:09 -0400
We want to extend the valid_until for "reasonably live", not the valid_after time


svn:r12169

Nick Mathewson преди 18 години
родител
ревизия
beb73c90ab
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. 2 2
      src/or/networkstatus.c

+ 2 - 2
src/or/networkstatus.c

@@ -1128,8 +1128,8 @@ networkstatus_get_reasonably_live_consensus(time_t now)
 {
 #define REASONABLY_LIVE_TIME (24*60*60)
   if (current_consensus &&
-      current_consensus->valid_after <= now+REASONABLY_LIVE_TIME &&
-      now <= current_consensus->valid_until)
+      current_consensus->valid_after <= now &&
+      now <= current_consensus->valid_until+REASONABLY_LIVE_TIME)
     return current_consensus;
   else
     return NULL;