]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
so which is it? TIME_MAX or INT_MAX? pick INT_MAX for now.
authorRoger Dingledine <arma@torproject.org>
Thu, 25 Dec 2008 15:42:03 +0000 (15:42 +0000)
committerRoger Dingledine <arma@torproject.org>
Thu, 25 Dec 2008 15:42:03 +0000 (15:42 +0000)
svn:r17772

src/or/directory.c

index aa9b76c68f5b4a902732ea1f4ddca8edc394860a..a062a6276a77470dcb0ef19579e202321227b020 100644 (file)
@@ -3332,20 +3332,20 @@ download_status_increment_failure(download_status_t *dls, int status_code,
   if (dls->n_download_failures < schedule_len)
     increment = schedule[dls->n_download_failures];
   else if (dls->n_download_failures == IMPOSSIBLE_TO_DOWNLOAD)
-    increment = TIME_MAX;
+    increment = INT_MAX;
   else
     increment = schedule[schedule_len-1];
 
   if (increment < INT_MAX)
     dls->next_attempt_at = now+increment;
   else
-    dls->next_attempt_at = TIME_MAX;
+    dls->next_attempt_at = INT_MAX;
 
   if (item) {
     if (dls->next_attempt_at == 0)
       log_debug(LD_DIR, "%s failed %d time(s); I'll try again immediately.",
                 item, (int)dls->n_download_failures);
-    else if (dls->next_attempt_at < TIME_MAX)
+    else if (dls->next_attempt_at < INT_MAX)
       log_debug(LD_DIR, "%s failed %d time(s); I'll try again in %d seconds.",
                 item, (int)dls->n_download_failures,
                 (int)(dls->next_attempt_at-now));