mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-27 22:03:31 +01:00
Fix too wide line from make check-spaces
.
See: https://bugs.torproject.org/21667
This commit is contained in:
parent
ae33deb91d
commit
fade313ba3
@ -3618,12 +3618,12 @@ handle_get_frontpage(dir_connection_t *conn, const get_handler_args_t *args)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Warn that the cached consensus <b>cached_consensus</b> of type
|
/** Warn that the cached consensus <b>consensus</b> of type
|
||||||
* <b>flavor</b> is too old and will not be served to clients. Rate-limit the
|
* <b>flavor</b> is too old and will not be served to clients. Rate-limit the
|
||||||
* warning to avoid logging an entry on every request.
|
* warning to avoid logging an entry on every request.
|
||||||
*/
|
*/
|
||||||
static void
|
static void
|
||||||
warn_consensus_is_too_old(const struct consensus_cache_entry_t *cached_consensus,
|
warn_consensus_is_too_old(const struct consensus_cache_entry_t *consensus,
|
||||||
const char *flavor, time_t now)
|
const char *flavor, time_t now)
|
||||||
{
|
{
|
||||||
#define TOO_OLD_WARNING_INTERVAL (60*60)
|
#define TOO_OLD_WARNING_INTERVAL (60*60)
|
||||||
@ -3632,7 +3632,7 @@ warn_consensus_is_too_old(const struct consensus_cache_entry_t *cached_consensus
|
|||||||
time_t valid_until;
|
time_t valid_until;
|
||||||
char *dupes;
|
char *dupes;
|
||||||
|
|
||||||
if (consensus_cache_entry_get_valid_until(cached_consensus, &valid_until))
|
if (consensus_cache_entry_get_valid_until(consensus, &valid_until))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if ((dupes = rate_limit_log(&warned, now))) {
|
if ((dupes = rate_limit_log(&warned, now))) {
|
||||||
|
Loading…
Reference in New Issue
Block a user