Browse Source

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 years ago
parent
commit
beb73c90ab
1 changed files with 2 additions and 2 deletions
  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;