diff options
author | David Goulet <dgoulet@torproject.org> | 2023-05-24 10:42:00 -0400 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2023-05-24 10:45:21 -0400 |
commit | 8eae9f17ae87e16ab7595544d858e9371d9068c2 (patch) | |
tree | 9a024d6dcb43605e8e3a3e47d118ca2de2f9fe15 /src | |
parent | 21ec9017f60a0f7f9fc04782bc4bab6b836f0758 (diff) | |
download | tor-8eae9f17ae87e16ab7595544d858e9371d9068c2.tar.gz tor-8eae9f17ae87e16ab7595544d858e9371d9068c2.zip |
metrics: Add ticket 40546 changes file and code fix
The MR was using an old function definition so the code fix is for that.
Closes #40546
Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/feature/relay/relay_metrics.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/feature/relay/relay_metrics.c b/src/feature/relay/relay_metrics.c index 494cfb34dd..5309411804 100644 --- a/src/feature/relay/relay_metrics.c +++ b/src/feature/relay/relay_metrics.c @@ -1014,7 +1014,7 @@ fill_signing_cert_expiry(void) signing_key = get_master_signing_key_cert(); if (signing_key) { sentry = metrics_store_add(the_store, rentry->type, rentry->name, - rentry->help); + rentry->help, 0, NULL); metrics_store_entry_update(sentry, signing_key->valid_until); } } |