]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
spelling: hexdigest
authorJosh Soref <2119212+jsoref@users.noreply.github.com>
Mon, 17 Feb 2025 03:21:49 +0000 (22:21 -0500)
committerAki Tuomi <aki.tuomi@open-xchange.com>
Fri, 22 May 2026 10:23:03 +0000 (13:23 +0300)
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
src/lib-dcrypt/istream-decrypt.c

index fbcd28384c2047d76764c868c0340c2983161988..f2d7778bc04dc4608d7539445fb40c3ce7050257 100644 (file)
@@ -375,12 +375,12 @@ i_stream_decrypt_key(struct decrypt_istream *stream, const char *malg,
                                break;
                        }
                } else if (stream->key_callback != NULL) {
-                       const char *hexdgst = /* digest length */
+                       const char *hexdigest = /* digest length */
                                binary_to_hex(data, sizeof(digest));
                        if (stream->priv_key != NULL)
                                dcrypt_key_unref_private(&stream->priv_key);
                        /* hope you going to give us right key.. */
-                       int ret = stream->key_callback(hexdgst,
+                       int ret = stream->key_callback(hexdigest,
                                &stream->priv_key, &error, stream->key_context);
                        if (ret < 0) {
                                io_stream_set_error(&stream->istream.iostream,