X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=send.c;h=c3bc525b88db9c08a9586c394fb811f8730b59e8;hp=3b6b773659427849d27553959ba67d1f3d90b732;hb=59926571aaec3e38cec09d0d9fa34f4a4b887309;hpb=b17296ba049d71986028ac83f0b415a021d0691c diff --git a/send.c b/send.c index 3b6b773..c3bc525 100644 --- a/send.c +++ b/send.c @@ -490,10 +490,9 @@ static int default_to (ADDRESS ** to, ENVELOPE * env, int flags, int hmfupto) */ if (!(flags & SENDGROUPREPLY) && mutt_is_list_cc (0, env->to, env->cc)) { switch (query_quadoption (OPT_LISTREPLY, - _ - ("Message came from a mailing list. Reply to author only?"))) + _("Message came from a mailing list. List-reply to mailing list?"))) { - case M_NO: + case M_YES: tmp = find_mailing_lists (env->to, env->cc); rfc822_append (to, tmp); rfc822_free_address (&tmp); @@ -1077,7 +1076,7 @@ static void fix_end_of_file (const char *data) if ((fp = safe_fopen (data, "a+")) == NULL) return; - fseek (fp, -1, SEEK_END); + fseeko (fp, -1, SEEK_END); if ((c = fgetc (fp)) != '\n') fputc ('\n', fp); safe_fclose (&fp);