diff options
author | David Goulet <dgoulet@ev0ke.net> | 2015-08-05 13:48:12 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2015-08-11 09:34:41 -0400 |
commit | 6e967235240dede017bbf0a696de62443fd2a7c3 (patch) | |
tree | cb34f5500d9a3055bc29db422ae3681af322e48b /src/or/rendcache.c | |
parent | c265621a525f23f5e208f5ca0c7211bd6c7483ce (diff) | |
download | tor-6e967235240dede017bbf0a696de62443fd2a7c3.tar.gz tor-6e967235240dede017bbf0a696de62443fd2a7c3.zip |
Add created timestamp to a rend cache failure entry
Signed-off-by: David Goulet <dgoulet@ev0ke.net>
Diffstat (limited to 'src/or/rendcache.c')
-rw-r--r-- | src/or/rendcache.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/or/rendcache.c b/src/or/rendcache.c index 8f3ddf5585..9be9e24941 100644 --- a/src/or/rendcache.c +++ b/src/or/rendcache.c @@ -129,6 +129,7 @@ rend_cache_failure_intro_entry_new(rend_intro_point_failure_t failure) { rend_cache_failure_intro_t *entry = tor_malloc(sizeof(*entry)); entry->failure_type = failure; + entry->created_ts = time(NULL); return entry; } |