diff options
author | friendly73 <friendly73@x.x> | 2023-04-15 14:48:30 +0000 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2023-05-25 11:03:35 -0400 |
commit | 273227afe1c56ca93ab8c0e3e034bcf28c51e5ef (patch) | |
tree | ed6163a87b6889c38030ac8ee334cc45c51d1ac9 /src | |
parent | 3d5d8d59c1240e436490449895b597871efc0f30 (diff) | |
download | tor-273227afe1c56ca93ab8c0e3e034bcf28c51e5ef.tar.gz tor-273227afe1c56ca93ab8c0e3e034bcf28c51e5ef.zip |
Forgot about the stub names
Diffstat (limited to 'src')
-rw-r--r-- | src/feature/relay/relay_stub.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/feature/relay/relay_stub.c b/src/feature/relay/relay_stub.c index e21ea97f79..4531096316 100644 --- a/src/feature/relay/relay_stub.c +++ b/src/feature/relay/relay_stub.c @@ -22,25 +22,25 @@ const struct subsys_fns_t sys_relay = { }; void -increment_est_intro_action(est_intro_action_t action) +relay_increment_est_intro_action(est_intro_action_t action) { (void)action; } void -increment_est_rend_action(est_rend_action_t action) +relay_increment_est_rend_action(est_rend_action_t action) { (void)action; } void -increment_intro1_action(intro1_action_t action) +relay_increment_intro1_action(intro1_action_t action) { (void)action; } void -increment_rend1_action(rend1_action_t action) +relay_increment_rend1_action(rend1_action_t action) { (void)action; } |