X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=gnupgparse.c;h=ef08bcdce005818bae4be1a353fdc80065e3b1d1;hp=080bc296342f4ee90dd444b5d7af6e41a5b31491;hb=eed5352e46df93f8921d2e6dfdc95b027bad6e1e;hpb=8e037c67a88cb4680c4391134c578e3b55a80f8a diff --git a/gnupgparse.c b/gnupgparse.c index 080bc29..ef08bcd 100644 --- a/gnupgparse.c +++ b/gnupgparse.c @@ -34,6 +34,7 @@ #include #include +#include #include "mutt.h" #include "pgp.h" @@ -42,8 +43,6 @@ /* for hexval */ #include "mime.h" -#include "lib/mem.h" -#include "lib/str.h" #include "lib/debug.h" /**************** @@ -98,7 +97,7 @@ static void fix_uid (char *uid) memcpy (uid, buf, ob - buf); uid[ob - buf] = '\0'; } - else if (ob - buf == n && (buf[n] = 0, str_len (buf) < n)) + else if (ob - buf == n && (buf[n] = 0, m_strlen(buf) < n)) memcpy (uid, buf, n); } p_delete(&buf); @@ -132,19 +131,19 @@ static pgp_key_t parse_pub_line (char *buf, int *is_subkey, pgp_key_t k) { debug_print (2, ("record type: %s\n", p)); - if (!str_cmp (p, "pub")); - else if (!str_cmp (p, "sub")) + if (!m_strcmp(p, "pub")); + else if (!m_strcmp(p, "sub")) *is_subkey = 1; - else if (!str_cmp (p, "sec")); - else if (!str_cmp (p, "ssb")) + else if (!m_strcmp(p, "sec")); + else if (!m_strcmp(p, "ssb")) *is_subkey = 1; - else if (!str_cmp (p, "uid")) + else if (!m_strcmp(p, "uid")) is_uid = 1; else return NULL; if (!(is_uid || (*is_subkey && option (OPTPGPIGNORESUB)))) - k = mem_calloc (sizeof *k, 1); + k = pgp_new_keyinfo(); break; } @@ -248,9 +247,9 @@ static pgp_key_t parse_pub_line (char *buf, int *is_subkey, pgp_key_t k) debug_print (2, ("user ID: %s\n", p)); - uid = mem_calloc (sizeof (pgp_uid_t), 1); + uid = p_new(pgp_uid_t, 1); fix_uid (p); - uid->addr = str_dup (p); + uid->addr = m_strdup(p); uid->trust = trust; uid->flags |= flags; uid->parent = k;