X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=compose.c;h=e8ef1ad47ab7815bb8480e5ef9a0585c59e3f44c;hp=90de0470fff8ff388ff9809101c64bca26a82541;hb=e10e4062ade3f8a2fefddf38f66b5d6c05dd7720;hpb=f404a0ca916be07049af51a3022baaaaab94def6 diff --git a/compose.c b/compose.c index 90de047..e8ef1ad 100644 --- a/compose.c +++ b/compose.c @@ -190,11 +190,11 @@ static void redraw_crypt_lines (HEADER *msg) clrtoeol (); if ((WithCrypto & APPLICATION_PGP) && msg->security & APPLICATION_PGP && msg->security & SIGN) - printw ("%s%s", _(" sign as: "), PgpSignAs ? PgpSignAs : _("")); + printw ("%s%s", _(" sign as: "), PgpSignAs ? PgpSignAs : _("")); if ((WithCrypto & APPLICATION_SMIME) && msg->security & APPLICATION_SMIME && msg->security & SIGN) { - printw ("%s%s", _(" sign as: "), SmimeDefaultKey ? SmimeDefaultKey : _("")); + printw ("%s%s", _(" sign as: "), SmimeDefaultKey ? SmimeDefaultKey : _("")); } if ((WithCrypto & APPLICATION_SMIME) @@ -301,9 +301,9 @@ static void draw_envelope (HEADER *msg, char *fcc) } else { - mvprintw (HDR_TO, 0, TITLE_FMT , Prompts[HDR_NEWSGROUPS - 1]); + mvprintw (HDR_TO, SidebarWidth, TITLE_FMT , Prompts[HDR_NEWSGROUPS - 1]); mutt_paddstr (W, NONULL (msg->env->newsgroups)); - mvprintw (HDR_CC, 0, TITLE_FMT , Prompts[HDR_FOLLOWUPTO - 1]); + mvprintw (HDR_CC, SidebarWidth, TITLE_FMT , Prompts[HDR_FOLLOWUPTO - 1]); mutt_paddstr (W, NONULL (msg->env->followup_to)); if (option (OPTXCOMMENTTO)) { @@ -508,7 +508,7 @@ compose_format_str (char *buf, size_t buflen, char op, const char *src, break; case 'v': - snprintf (fmt, sizeof (fmt), "Mutt %%s"); + snprintf (fmt, sizeof (fmt), "Mutt-ng %%s"); snprintf (buf, buflen, fmt, MUTT_VERSION); break;