X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=pgpkey.c;h=eeb0048c63625246c7e9acd05affa2c513c8792c;hp=1136ee5714c1bf02d6aff33791b7deefd1a57143;hb=7f7a0be369840b290248e5b0302beb447fa1b3cd;hpb=8e037c67a88cb4680c4391134c578e3b55a80f8a diff --git a/pgpkey.c b/pgpkey.c index 1136ee5..eeb0048 100644 --- a/pgpkey.c +++ b/pgpkey.c @@ -13,6 +13,8 @@ #endif #include +#include +#include #include "mutt.h" #include "enter.h" @@ -25,9 +27,6 @@ #include "pager.h" #include "sort.h" -#include "lib/mem.h" -#include "lib/intl.h" -#include "lib/str.h" #include "lib/debug.h" #include @@ -455,7 +454,7 @@ static pgp_key_t pgp_select_key (pgp_key_t keys, ADDRESS * p, const char *s) if (i == keymax) { keymax += 5; - mem_realloc (&KeyTable, sizeof (pgp_uid_t *) * keymax); + p_realloc(&KeyTable, keymax); } KeyTable[i++] = a; @@ -666,8 +665,8 @@ pgp_key_t pgp_ask_for_key (char *tag, char *whatfor, l = p_new(struct pgp_cache, 1); l->next = id_defaults; id_defaults = l; - l->what = str_dup (whatfor); - l->dflt = str_dup (resp); + l->what = m_strdup(whatfor); + l->dflt = m_strdup(resp); } } @@ -743,13 +742,13 @@ BODY *pgp_make_key_attachment (char *tempf) fclose (devnull); att = mutt_new_body (); - att->filename = str_dup (tempf); + att->filename = m_strdup(tempf); att->unlink = 1; att->use_disp = 0; att->type = TYPEAPPLICATION; - att->subtype = str_dup ("pgp-keys"); + att->subtype = m_strdup("pgp-keys"); snprintf (buff, sizeof (buff), _("PGP Key %s."), tmp); - att->description = str_dup (buff); + att->description = m_strdup(buff); mutt_update_encoding (att); stat (tempf, &sb); @@ -763,12 +762,12 @@ static LIST *pgp_add_string_to_hints (LIST * hints, const char *str) char *scratch; char *t; - if ((scratch = str_dup (str)) == NULL) + if ((scratch = m_strdup(str)) == NULL) return hints; for (t = strtok (scratch, " ,.:\"()<>\n"); t; t = strtok (NULL, " ,.:\"()<>\n")) { - if (str_len (t) > 3) + if (m_strlen(t) > 3) hints = mutt_add_list (hints, t); }