diff options
author | friendly73 <friendly73@x.x> | 2023-02-19 19:03:48 +0000 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2023-05-25 11:03:35 -0400 |
commit | 2f8a88448d9a75737a60a204127eb697891ec112 (patch) | |
tree | e8f1ec2c5256e09529d962d4d228fc54d83bffc2 /src/feature | |
parent | 24bc66f663f53db9c009b21295e6f7a1953c4244 (diff) | |
download | tor-2f8a88448d9a75737a60a204127eb697891ec112.tar.gz tor-2f8a88448d9a75737a60a204127eb697891ec112.zip |
Fixed est intro getter using wrong array
Diffstat (limited to 'src/feature')
-rw-r--r-- | src/feature/stats/rephist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/feature/stats/rephist.c b/src/feature/stats/rephist.c index dbd753a233..5ce4ed3ea8 100644 --- a/src/feature/stats/rephist.c +++ b/src/feature/stats/rephist.c @@ -3053,7 +3053,7 @@ rep_hist_note_est_intro_action(est_intro_action_t action) uint64_t rep_hist_get_est_intro_action_count(est_intro_action_t action) { - return est_rend_actions[action]; + return est_intro_actions[action]; } void |