diff options
author | Erich Eckner <git@eckner.net> | 2019-02-20 13:47:31 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2021-01-20 19:18:53 +0100 |
commit | 1d577701f415030bb215b997e6fb4c2ab993b1a3 (patch) | |
tree | 0b4c6f00dd2c1c891df6165a8cf8ddcf20a01d9e /imap/src/c-client/mail.c | |
parent | 4fcb1dccfa8ee416684d560a5c0f45aed8a12807 (diff) | |
download | alpine-1d577701f415030bb215b997e6fb4c2ab993b1a3.tar.xz |
topal-patch-2 appliedtopal-patch
Diffstat (limited to 'imap/src/c-client/mail.c')
-rw-r--r-- | imap/src/c-client/mail.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/imap/src/c-client/mail.c b/imap/src/c-client/mail.c index 981025c1..81f637d1 100644 --- a/imap/src/c-client/mail.c +++ b/imap/src/c-client/mail.c @@ -2850,6 +2850,8 @@ BODY *mail_body_section (BODY *b, unsigned char *section) BODY *mail_body (MAILSTREAM *stream,unsigned long msgno,unsigned char *section) { BODY *b = NIL; + /* Topal hack 2 */ + mail_fetchstructure (stream,msgno,&b); /* make sure have a body */ if (section && *section && mail_fetchstructure (stream,msgno,&b) && b) return mail_body_section(b, section); |