commit d71e99303d0b82fde93cd90300487d1b3a567e95
parent f04e9a13ffab0e839efb2b76bcf36fdbcf7e33d9
Author: Colin Leroy <colin@colino.net>
Date: Sun, 7 Oct 2018 20:26:50 +0200
Merge branch 'master' of ssh://git.claws-mail.org/home/git/claws
Diffstat:
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/passwordstore.c b/src/passwordstore.c
@@ -122,11 +122,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
@@ -141,6 +136,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 */