X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=lib-crypt%2Fpgpkey.c;h=96db58a5cb0993f7b33eba080a93f6fe2eab3146;hb=8f75834aeadb902879602a82a259f4d3bf9c569c;hp=87dee7dc5dae0485f654c2702ef871d92a4e3151;hpb=8a2967d883cee12f0de4c0cdf0cd594ea96e622b;p=apps%2Fmadmutt.git diff --git a/lib-crypt/pgpkey.c b/lib-crypt/pgpkey.c index 87dee7d..96db58a 100644 --- a/lib-crypt/pgpkey.c +++ b/lib-crypt/pgpkey.c @@ -236,7 +236,7 @@ pgp_entry_fmt (char *dest, ssize_t destlen, char op, } if (flags & M_FORMAT_OPTIONAL) - m_strformat(dest, destlen, optional ? ifstr : elstr, + m_strformat(dest, destlen, 0, optional ? ifstr : elstr, mutt_attach_fmt, data, 0); return src; } @@ -249,7 +249,7 @@ static void pgp_entry (char *s, ssize_t l, MUTTMENU * menu, int num) entry.uid = KeyTable[num]; entry.num = num + 1; - m_strformat(s, l, PgpEntryFormat, pgp_entry_fmt, &entry, + m_strformat(s, l, COLS - SW, PgpEntryFormat, pgp_entry_fmt, &entry, option(OPTARROWCURSOR) ? M_FORMAT_ARROWCURSOR : 0); } @@ -505,7 +505,7 @@ static pgp_key_t pgp_select_key (pgp_key_t keys, address_t * p, const char *s) break; } - fp = m_tempfile (tempfile, sizeof(tempfile), NONULL(Tempdir), NULL); + fp = m_tempfile (tempfile, sizeof(tempfile), NONULL(MCore.tmpdir), NULL); if (!fp) { m_fclose(&devnull); mutt_perror (_("Can't create temporary file")); @@ -682,7 +682,7 @@ BODY *pgp_make_key_attachment (char *tempf) pgp_free_key (&key); if (!tempf) { - tempfp = m_tempfile (tempfb, sizeof(tempfb), NONULL(Tempdir), NULL); + tempfp = m_tempfile (tempfb, sizeof(tempfb), NONULL(MCore.tmpdir), NULL); tempf = tempfb; } else { tempfp = safe_fopen(tempf, "a");