summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2020-05-06 10:32:35 -0400
committerNick Mathewson <nickm@torproject.org>2020-05-06 15:08:02 -0400
commit75547c01a37c65398f8d31ee9cb38d865119cd28 (patch)
tree8bb5477e791296932ab70a43d0aa5418ccf966d6
parent6c3c94357c196681ceda773425e18161da8cfdef (diff)
downloadtor-75547c01a37c65398f8d31ee9cb38d865119cd28.tar.gz
tor-75547c01a37c65398f8d31ee9cb38d865119cd28.zip
Replace a "fall through" comment that was outside a switch.
-rw-r--r--src/feature/dirauth/keypin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/feature/dirauth/keypin.c b/src/feature/dirauth/keypin.c
index 667feb2c03..06cb9ba1ff 100644
--- a/src/feature/dirauth/keypin.c
+++ b/src/feature/dirauth/keypin.c
@@ -267,7 +267,7 @@ keypin_add_or_replace_entry_in_map(keypin_ent_t *ent)
}
tor_free(ent2);
r = -1;
- /* Fall through */
+ /* Note lack of return here: we fall through to the next line. */
}
keypin_add_entry_to_map(ent);