From e8ab8477beed31780681941da66b60c8b3fd7052 Mon Sep 17 00:00:00 2001 From: Andrew Bettison Date: Tue, 10 Sep 2013 13:28:27 +0930 Subject: [PATCH] Get rid of worse-than-useless keyring debug --- keyring.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/keyring.c b/keyring.c index 293894e9..6a49ad38 100644 --- a/keyring.c +++ b/keyring.c @@ -224,11 +224,8 @@ void keyring_free(keyring_file *k) static void wipestr(char *str) { - while (*str) { - if (config.debug.keyring) - DEBUGF("wiping PIN char '%c'", *str); + while (*str) *str++ = ' '; - } } void keyring_free_context(keyring_context *c)