talons

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

commit 75dcdc6dbe179dd574a12d32174601e3da3c739f
parent 9d26c54bd3f1f93af5bba7d205cd66a443b393f1
Author: Andrej Kacian <ticho@claws-mail.org>
Date:   Sun, 15 Jul 2018 23:43:45 +0200

Remove unneeded debug_print lines.

Diffstat:
Msrc/plugins/pgpcore/prefs_gpg.c | 4----
1 file changed, 0 insertions(+), 4 deletions(-)

diff --git a/src/plugins/pgpcore/prefs_gpg.c b/src/plugins/pgpcore/prefs_gpg.c @@ -552,10 +552,8 @@ struct GPGAccountConfig *prefs_gpg_account_get_config(PrefsAccount *account) confstr = prefs_account_get_privacy_prefs(account, "gpg"); if (confstr != NULL) { - debug_print("confstr|%s|\n", confstr); strv = g_strsplit(confstr, ";", 0); if (strv[0] != NULL) { - debug_print("strv0|%s|\n", strv[0]); if (!strcmp(strv[0], "DEFAULT")) config->sign_key = SIGN_KEY_DEFAULT; else if (!strcmp(strv[0], "BY_FROM")) @@ -580,10 +578,8 @@ struct GPGAccountConfig *prefs_gpg_account_get_config(PrefsAccount *account) if (confstr == NULL) confstr = prefs_account_get_privacy_prefs(account, "gpg"); if (confstr != NULL) { - debug_print("confstr|%s|\n", confstr); strv = g_strsplit(confstr, ";", 0); if (strv[0] != NULL) { - debug_print("strv0|%s|\n", strv[0]); if (!strcmp(strv[0], "DEFAULT")) config->smime_sign_key = SIGN_KEY_DEFAULT; else if (!strcmp(strv[0], "BY_FROM"))