X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=crypt.c;h=923b8d759b63b84a020b269002fde0caa9a81f19;hp=eac7a85d598113a142f90d3ab0a1e6d0eb276211;hb=ee869a42bc5677da8e3602ec1947af1736786648;hpb=c8ceef3ed6424dcb5a6ec835e7d8d9cc00595372 diff --git a/crypt.c b/crypt.c index eac7a85..923b8d7 100644 --- a/crypt.c +++ b/crypt.c @@ -16,8 +16,13 @@ # include "config.h" #endif +#include +#include +#include +#include +#include + #include "mutt.h" -#include "ascii.h" #include "handler.h" #include "mutt_curses.h" #include "mime.h" @@ -25,9 +30,6 @@ #include "mutt_crypt.h" #include "pgp.h" -#include "lib/mem.h" -#include "lib/intl.h" -#include "lib/str.h" #include #include @@ -51,7 +53,7 @@ /* print the current time to avoid spoofing of the signature output */ -void crypt_current_time (STATE * s, char *app_name) +void crypt_current_time (STATE * s, const char *app_name) { time_t t; char p[STRING], tmp[STRING]; @@ -388,7 +390,7 @@ int mutt_is_application_smime (BODY * m) /* no .p7c, .p10 support yet. */ - len = str_len (t) - 4; + len = m_strlen(t) - 4; if (len > 0 && *(t + len) == '.') { len++; if (!ascii_strcasecmp ((t + len), "p7m")) @@ -697,7 +699,7 @@ int crypt_get_keys (HEADER * msg, char **keylist) -static void crypt_fetch_signatures (BODY *** signatures, BODY * a, int *n) +static void crypt_fetch_signatures (BODY ***signatures, BODY * a, int *n) { if (!WithCrypto) return; @@ -707,7 +709,7 @@ static void crypt_fetch_signatures (BODY *** signatures, BODY * a, int *n) crypt_fetch_signatures (signatures, a->parts, n); else { if ((*n % 5) == 0) - mem_realloc (signatures, (*n + 6) * sizeof (BODY **)); + p_realloc(signatures, *n + 6); (*signatures)[(*n)++] = a; } @@ -826,7 +828,7 @@ int mutt_signed_handler (BODY * a, STATE * s) state_attach_puts (_("[-- The following data is signed --]\n\n"), s); - mem_free (&signatures); + p_delete(&signatures); } else state_attach_puts (_("[-- Warning: Can't find any signatures. --]\n\n"),