talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit 2ff4d196e31e168a860ed0a84a5a35843cf8cae0
parent 5da8c014525c3e2a6b407e37f6add8c332151a84
Author: Paul <paul@claws-mail.org>
Date:   Thu, 20 Feb 2025 09:26:42 +0000

don't debug_print() the whole encrypted block

Diffstat:
Msrc/plugins/pgpinline/pgpinline.c | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/plugins/pgpinline/pgpinline.c b/src/plugins/pgpinline/pgpinline.c @@ -1,6 +1,6 @@ /* * Claws Mail -- a GTK based, lightweight, and fast e-mail client - * Copyright (C) 1999-2024 the Claws Mail team and Colin Leroy + * Copyright (C) 1999-2025 the Claws Mail team and Colin Leroy * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -393,7 +393,6 @@ static MimeInfo *pgpinline_decrypt(MimeInfo *mimeinfo) return NULL; } - debug_print("decrypting '%s'\n", textdata); gpgme_data_new_from_mem(&cipher, textdata, (size_t)strlen(textdata), 1); plain = sgpgme_decrypt_verify(cipher, &sigstat, ctx);