Get rid of worse-than-useless keyring debug

This commit is contained in:
Andrew Bettison 2013-09-10 13:28:27 +09:30
parent 7add45214c
commit e8ab8477be

View File

@ -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)