From: Nick Mathewson Date: Tue, 7 Oct 2014 13:34:28 +0000 (-0400) Subject: Don't reset the download failure status of any object marked as impossible X-Git-Tag: tor-0.2.6.1-alpha~48^2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b8e2be5557287a00905aa30f78eff42519b164d5;p=thirdparty%2Ftor.git Don't reset the download failure status of any object marked as impossible --- diff --git a/src/or/directory.c b/src/or/directory.c index 1aaa75ccee..8e75bfdeeb 100644 --- a/src/or/directory.c +++ b/src/or/directory.c @@ -3442,6 +3442,9 @@ download_status_increment_failure(download_status_t *dls, int status_code, void download_status_reset(download_status_t *dls) { + if (dls->n_download_failures == IMPOSSIBLE_TO_DOWNLOAD) + return; /* Don't reset this. */ + const smartlist_t *schedule = find_dl_schedule_and_len( dls, get_options()->DirPort_set);