X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=remailer.c;h=b17ec826ea37d893d943c6b42a88c0f0079dd11c;hp=226953d7d290b84fde0426dc72ce40ba237f51ef;hb=22116d7063ab4d7de33946d74ab8b9cbc0f3f6ef;hpb=fc854762626c5e2dce8c5618860a882934ec81d2;ds=sidebyside diff --git a/remailer.c b/remailer.c index 226953d..b17ec82 100644 --- a/remailer.c +++ b/remailer.c @@ -672,17 +672,16 @@ int mix_check_message (HEADER * msg) if (need_hostname) { - if (!(fqdn = mutt_fqdn (1))) { + if (!(fqdn = mutt_fqdn(1))) { mutt_error - _ - ("Please set the hostname variable to a proper value when using mixmaster!"); - return (-1); + _("Please set the hostname variable to a proper value when using mixmaster!"); + return -1; } /* Cc and Bcc are empty at this point. */ - rfc822_qualify (msg->env->to, fqdn); - rfc822_qualify (msg->env->reply_to, fqdn); - rfc822_qualify (msg->env->mail_followup_to, fqdn); + rfc822_qualify(msg->env->to, fqdn); + rfc822_qualify(msg->env->reply_to, fqdn); + rfc822_qualify(msg->env->mail_followup_to, fqdn); } return 0;