From 34f7aeb3297aab661367d1c383dfa83f7afb73b4 Mon Sep 17 00:00:00 2001 From: Andrej Kacian Date: Sun, 7 Oct 2018 19:16:15 +0200 Subject: [PATCH] Improve debug output in passwd_store_set(). --- src/passwordstore.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/passwordstore.c b/src/passwordstore.c index 97f44d3f5..377e18223 100644 --- 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 */ -- 2.25.1