talons

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

commit 34f7aeb3297aab661367d1c383dfa83f7afb73b4
parent 9981c575ca466b3d9be9b1629cd919d01323f1a9
Author: Andrej Kacian <ticho@claws-mail.org>
Date:   Sun,  7 Oct 2018 19:16:15 +0200

Improve debug output in passwd_store_set().

Diffstat:
Msrc/passwordstore.c | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/passwordstore.c b/src/passwordstore.c @@ -121,11 +121,6 @@ gboolean passwd_store_set(PasswordBlockType block_type, else p = password; - debug_print("%s password '%s' in block (%d/%s)%s\n", - (p == NULL ? "Deleting" : "Storing"), - password_id, block_type, block_name, - (encrypted ? ", already encrypted" : "") ); - /* find correct block (create if needed) */ if ((block = _get_block(block_type, block_name)) == NULL) { /* If caller wants to delete a password, and even its block @@ -140,6 +135,11 @@ gboolean passwd_store_set(PasswordBlockType block_type, } } + debug_print("%s password for '%s' in block (%d/%s)%s\n", + (p == NULL ? "Deleting" : "Storing"), + password_id, block_type, block_name, + (encrypted ? ", already encrypted" : "") ); + if (p == NULL) { /* NULL password was passed to us, so delete the entry with * corresponding id */