spost: Just a move of some code.
authormarkus schnalke <meillo@marmaro.de>
Thu, 14 Jun 2012 00:19:43 +0000 (02:19 +0200)
committermarkus schnalke <meillo@marmaro.de>
Thu, 14 Jun 2012 00:19:43 +0000 (02:19 +0200)
uip/spost.c

index 73f9b0a..30e283f 100644 (file)
@@ -298,16 +298,6 @@ main(int argc, char **argv)
                fcc(tmpfil, fccs);
        }
 
-       argp = sargv;
-       *argp++ = "send-mail";
-       *argp++ = "-m";  /* send to me too */
-       *argp++ = "-t";  /* read msg for recipients */
-       *argp++ = "-i";  /* don't stop on "." */
-       if (watch || verbose) {
-               *argp++ = "-v";
-       }
-       *argp = NULL;
-
        if (bccs) {
                process_bccs(tmpfil);
                if (!(msgflags & MVIS)) {
@@ -326,6 +316,15 @@ main(int argc, char **argv)
        }
        unlink(tmpfil);
 
+       argp = sargv;
+       *argp++ = "send-mail";
+       *argp++ = "-m";  /* send to me too */
+       *argp++ = "-t";  /* read msg for recipients */
+       *argp++ = "-i";  /* don't stop on "." */
+       if (watch || verbose) {
+               *argp++ = "-v";
+       }
+       *argp = NULL;
        execv(sendmail, sargv);
        adios(sendmail, "can't exec");
        return -1;