summaryrefslogtreecommitdiff
path: root/src/lib/wallclock/approx_time.c
diff options
context:
space:
mode:
authorteor <teor@torproject.org>2019-09-10 09:03:37 +1000
committerteor <teor@torproject.org>2019-09-10 09:03:37 +1000
commit987768b07766e752d7aa7234916abe1e8e2feb87 (patch)
tree4952b592b5cb39911eed33405b1433d249dc4c70 /src/lib/wallclock/approx_time.c
parent796a9b37ea346f413f6684505ca31879ddf3f0f1 (diff)
parentf1c57cd1e5d8ae88f28f764fef7f17081ebf2961 (diff)
downloadtor-987768b07766e752d7aa7234916abe1e8e2feb87.tar.gz
tor-987768b07766e752d7aa7234916abe1e8e2feb87.zip
Merge branch 'bug31615_041' into bug31615_master
Merged modified lines from bug31615_041, and unmodified lines from master.
Diffstat (limited to 'src/lib/wallclock/approx_time.c')
-rw-r--r--src/lib/wallclock/approx_time.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/wallclock/approx_time.c b/src/lib/wallclock/approx_time.c
index 7b32804026..77eeddaf56 100644
--- a/src/lib/wallclock/approx_time.c
+++ b/src/lib/wallclock/approx_time.c
@@ -54,6 +54,8 @@ subsys_wallclock_initialize(void)
const subsys_fns_t sys_wallclock = {
.name = "wallclock",
.supported = true,
- .level = -99,
+ /* Approximate time is a diagnostic feature, we want it to init right after
+ * low-level error handling. */
+ .level = -98,
.initialize = subsys_wallclock_initialize,
};