=== modified file 'TODO' --- TODO 2009-05-18 17:57:13 +0000 +++ TODO 2009-06-02 10:33:04 +0000 @@ -1,6 +1,7 @@ -*- org -*- * mandos-client +** TODO [#A] Take down network interface if it was initially down ** TODO [#A] Clean up /tmp directory on signal * plugin-runner === modified file 'plugins.d/mandos-client.c' --- plugins.d/mandos-client.c 2009-02-25 12:20:01 +0000 +++ plugins.d/mandos-client.c 2009-06-02 10:33:04 +0000 @@ -309,16 +309,14 @@ } gpgme_recipient_t recipient; recipient = result->recipients; - if(recipient){ - while(recipient != NULL){ - fprintf(stderr, "Public key algorithm: %s\n", - gpgme_pubkey_algo_name(recipient->pubkey_algo)); - fprintf(stderr, "Key ID: %s\n", recipient->keyid); - fprintf(stderr, "Secret key available: %s\n", - recipient->status == GPG_ERR_NO_SECKEY - ? "No" : "Yes"); - recipient = recipient->next; - } + while(recipient != NULL){ + fprintf(stderr, "Public key algorithm: %s\n", + gpgme_pubkey_algo_name(recipient->pubkey_algo)); + fprintf(stderr, "Key ID: %s\n", recipient->keyid); + fprintf(stderr, "Secret key available: %s\n", + recipient->status == GPG_ERR_NO_SECKEY + ? "No" : "Yes"); + recipient = recipient->next; } } }