diff options
author | Nick Mathewson <nickm@torproject.org> | 2020-05-06 14:47:38 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2020-05-06 15:08:02 -0400 |
commit | 3d3641152b5d8a4bf8587dec640bda3d440b7c36 (patch) | |
tree | 89a43da64aeb288d96e33ccaeb871ea8d02a018c | |
parent | 8798c0a94a9cd5ac24fed349da37f8e8dc8f64fd (diff) | |
download | tor-3d3641152b5d8a4bf8587dec640bda3d440b7c36.tar.gz tor-3d3641152b5d8a4bf8587dec640bda3d440b7c36.zip |
Remove an incorrect "Fall through" comment.
-rw-r--r-- | src/lib/crypt_ops/crypto_digest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/crypt_ops/crypto_digest.c b/src/lib/crypt_ops/crypto_digest.c index 26f06c6c79..1b2724b2aa 100644 --- a/src/lib/crypt_ops/crypto_digest.c +++ b/src/lib/crypt_ops/crypto_digest.c @@ -100,7 +100,7 @@ library_supports_digest(digest_algorithm_t alg) switch (alg) { case DIGEST_SHA1: /* Fall through */ case DIGEST_SHA256: /* Fall through */ - case DIGEST_SHA512: /* Fall through */ + case DIGEST_SHA512: return true; case DIGEST_SHA3_256: /* Fall through */ case DIGEST_SHA3_512: /* Fall through */ |