X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=pgpkey.c;h=42dc0ffcdc27a68811cd3899e4930af5c12fad01;hp=5e5172d87bc8cb8e2b14033905b3b0db479602f2;hb=3648b4eb2926b930816326ba2874a0648dcd81e7;hpb=25bf57d598476b329536fa3f748cc0c529fef6bd diff --git a/pgpkey.c b/pgpkey.c index 5e5172d..42dc0ff 100644 --- a/pgpkey.c +++ b/pgpkey.c @@ -23,6 +23,7 @@ #include "lib/mem.h" #include "lib/intl.h" #include "lib/str.h" +#include "lib/debug.h" #include #include @@ -811,17 +812,15 @@ pgp_key_t pgp_getkeybyaddr (ADDRESS * a, short abilities, pgp_ring_t keyring) if (!keys) return NULL; - dprint (5, (debugfile, "pgp_getkeybyaddr: looking for %s <%s>.", - a->personal, a->mailbox)); - + debug_print (5, ("looking for %s <%s>\n", a->personal, a->mailbox)); for (k = keys; k; k = kn) { kn = k->next; - dprint (5, (debugfile, " looking at key: %s\n", pgp_keyid (k))); + debug_print (5, (" looking at key: %s\n", pgp_keyid (k))); if (abilities && !(k->flags & abilities)) { - dprint (5, (debugfile, " insufficient abilities: Has %x, want %x\n", + debug_print (5, (" insufficient abilities: Has %x, want %x\n", k->flags, abilities)); continue; } @@ -928,17 +927,14 @@ pgp_key_t pgp_getkeybystr (char *p, short abilities, pgp_ring_t keyring) match = 0; for (a = k->address; a; a = a->next) { - dprint (5, - (debugfile, - "pgp_getkeybystr: matching \"%s\" against key %s, \"%s\": ", p, - pgp_keyid (k), a->addr)); + debug_print (5, ("matching \"%s\" against key %s, \"%s\":\n", p, pgp_keyid (k), a->addr)); if (!*p || safe_strcasecmp (p, pgp_keyid (k)) == 0 || (!safe_strncasecmp (p, "0x", 2) && !safe_strcasecmp (p + 2, pgp_keyid (k))) || (option (OPTPGPLONGIDS) && !safe_strncasecmp (p, "0x", 2) && !safe_strcasecmp (p + 2, k->keyid + 8)) || str_isstr (a->addr, p)) { - dprint (5, (debugfile, "match.\n")); + debug_print (5, ("match.\n")); match = 1; break; }