diff options
author | Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> | 2024-06-20 20:42:46 +0200 |
---|---|---|
committer | Tomas Mraz <tomas@openssl.org> | 2024-06-24 15:09:11 +0200 |
commit | 8f250985ad1ac4efc25621ce2504c52ef0cbe283 (patch) | |
tree | b419c25d7e1ee85db0de71175177654d7a8059fb /fuzz | |
parent | Extend `mask` of `ssl_method_st` to 64-bit (diff) | |
download | openssl-8f250985ad1ac4efc25621ce2504c52ef0cbe283.tar.xz openssl-8f250985ad1ac4efc25621ce2504c52ef0cbe283.zip |
Fix typos found by codespell
Reviewed-by: Paul Dale <ppzgs1@gmail.com>
Reviewed-by: Kurt Roeckx <kurt@roeckx.be>
(Merged from https://github.com/openssl/openssl/pull/24691)
Diffstat (limited to 'fuzz')
-rw-r--r-- | fuzz/hashtable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fuzz/hashtable.c b/fuzz/hashtable.c index 35cf9c8f3b..b58d48b225 100644 --- a/fuzz/hashtable.c +++ b/fuzz/hashtable.c @@ -130,7 +130,7 @@ int FuzzerTestOneInput(const uint8_t *buf, size_t len) /* * We need at least 11 bytes to be able to do anything here - * 1 byte to detect the operation to preform, 2 bytes + * 1 byte to detect the operation to perform, 2 bytes * for the lookup key, and 8 bytes of value */ if (len < 11) { |