summaryrefslogtreecommitdiffstats
path: root/send.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1999-05-03 10:07:08 +0000
committerThomas Roessler <roessler@does-not-exist.org>1999-05-03 10:07:08 +0000
commitdadfa8d481d21123db2ed56c187a515b836c340b (patch)
tree4d1ffba881766153afd302e7ff7d2977a098afe0 /send.c
parent6872c00039b4ae213ad62ea52bd3af878fef7455 (diff)
Various fixes.
Diffstat (limited to 'send.c')
-rw-r--r--send.c15
1 files changed, 1 insertions, 14 deletions
diff --git a/send.c b/send.c
index e51e7b90..f287e96b 100644
--- a/send.c
+++ b/send.c
@@ -874,7 +874,6 @@ ci_send_message (int flags, /* send mode */
FILE *tempfp = NULL;
BODY *pbody;
int i, killfrom = 0;
- struct stat st;
#ifdef _PGPPATH
BODY *save_content = NULL;
@@ -1206,19 +1205,6 @@ main_loop:
goto main_loop;
}
- /* Do FCC checking before any real processing happens, so we
- * don't have to do too much clean-up work.
- */
-
- mutt_expand_path (fcc, sizeof (fcc));
- if (*fcc && mutt_strcmp ("/dev/null", fcc) != 0 &&
- !option (OPTNOCURSES) && !(flags & SENDMAILX) &&
- !mutt_save_confirm (fcc, &st))
- {
- mutt_clear_error ();
- goto main_loop;
- }
-
if (msg->content->next)
msg->content = mutt_make_multipart (msg->content);
@@ -1274,6 +1260,7 @@ main_loop:
/* save a copy of the message, if necessary. */
+ mutt_expand_path (fcc, sizeof (fcc));
if (*fcc && mutt_strcmp ("/dev/null", fcc) != 0)
{
BODY *tmpbody = msg->content;