X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=remailer.c;h=a7b385b91fabb8ff49ce0eddecc6e706dba3dbd9;hp=b4e526e73e7036de6fc49ced60c5459acff443e1;hb=f65ae399906906f734398432691dbacf2c7bda9f;hpb=91d0c04349c9345f0ee29a61cc18dfc144b60edc diff --git a/remailer.c b/remailer.c index b4e526e..a7b385b 100644 --- a/remailer.c +++ b/remailer.c @@ -11,34 +11,17 @@ * Mixmaster support for Mutt */ -#if HAVE_CONFIG_H -# include "config.h" -#endif +#include -#include -#include -#include -#include -#include -#include +#include +#include +#include #include "mutt.h" #include "recvattach.h" -#include "mutt_curses.h" -#include "mutt_menu.h" #include "remailer.h" -#include "lib/rx.h" - -#include -#include -#include - -#include -#include -#include - #define SW (option(OPTMBOXPANE)?SidebarWidth:0) #ifdef MIXMASTER @@ -47,14 +30,14 @@ struct coord { short r, c; }; -static REMAILER **mix_type2_list (size_t * l); +static REMAILER **mix_type2_list (ssize_t * l); static REMAILER *mix_new_remailer (void); static const char *mix_format_caps (REMAILER * r); static int mix_chain_add (MIXCHAIN * chain, const char *s, REMAILER ** type2_list); static int mix_get_caps (const char *capstr); -static void mix_add_entry (REMAILER ***, REMAILER *, size_t *, size_t *); -static void mix_entry (char *b, size_t blen, MUTTMENU * menu, int num); +static void mix_add_entry (REMAILER ***, REMAILER *, ssize_t *, ssize_t *); +static void mix_entry (char *b, ssize_t blen, MUTTMENU * menu, int num); static void mix_free_remailer (REMAILER ** r); static void mix_free_type2_list (REMAILER *** ttlp); static void mix_redraw_ce (REMAILER ** type2_list, struct coord *coords, @@ -102,7 +85,7 @@ static int mix_get_caps (const char *capstr) } static void mix_add_entry (REMAILER *** type2_list, REMAILER * entry, - size_t * slots, size_t * used) + ssize_t * slots, ssize_t * used) { if (*used == *slots) { *slots += 5; @@ -130,7 +113,7 @@ static void mix_free_remailer (REMAILER ** r) /* parse the type2.list as given by mixmaster -T */ -static REMAILER **mix_type2_list (size_t * l) +static REMAILER **mix_type2_list (ssize_t * l) { FILE *fp; pid_t mm_pid; @@ -141,7 +124,7 @@ static REMAILER **mix_type2_list (size_t * l) char *t; REMAILER **type2_list = NULL, *p; - size_t slots = 0, used = 0; + ssize_t slots = 0, used = 0; if (!l) return NULL; @@ -366,7 +349,7 @@ static const char *mix_format_caps (REMAILER * r) */ static const char *mix_entry_fmt (char *dest, - size_t destlen, + ssize_t destlen, char op, const char *src, const char *prefix, @@ -421,10 +404,10 @@ static const char *mix_entry_fmt (char *dest, -static void mix_entry (char *b, size_t blen, MUTTMENU * menu, int num) +static void mix_entry (char *b, ssize_t blen, MUTTMENU * menu, int num) { REMAILER **type2_list = (REMAILER **) menu->data; - int w=(COLS-SW)>blen?blen:(COLS-SW); + int w = (COLS-SW) > blen ? blen : (COLS-SW); mutt_FormatString (b, w, NONULL (MixEntryFormat), mix_entry_fmt, (unsigned long) type2_list[num], M_FORMAT_ARROWCURSOR); @@ -468,16 +451,16 @@ static struct mapping_t RemailerHelp[] = { }; -void mix_make_chain (LIST ** chainp, int *redraw) +void mix_make_chain (string_list_t ** chainp, int *redraw) { - LIST *p; + string_list_t *p; MIXCHAIN *chain; int c_cur = 0, c_old = 0; int m_len; short c_redraw = 1; REMAILER **type2_list = NULL; - size_t ttll = 0; + ssize_t ttll = 0; struct coord *coords = NULL; @@ -501,7 +484,7 @@ void mix_make_chain (LIST ** chainp, int *redraw) for (p = *chainp; p; p = p->next) mix_chain_add (chain, (char *) p->data, type2_list); - mutt_free_list (chainp); + string_list_wipe(chainp); /* safety check */ for (i = 0; i < chain->cl; i++) { @@ -674,7 +657,7 @@ int mix_check_message (HEADER * msg) { const char *fqdn; short need_hostname = 0; - ADDRESS *p; + address_t *p; if (msg->env->cc || msg->env->bcc) { mutt_error _("Mixmaster doesn't accept Cc or Bcc headers."); @@ -713,7 +696,7 @@ int mix_check_message (HEADER * msg) return 0; } -int mix_send_message (LIST * chain, const char *tempfile) +int mix_send_message (string_list_t * chain, const char *tempfile) { char cmd[HUGE_STRING]; char tmp[HUGE_STRING];