From: markus schnalke Date: Sat, 14 Feb 2015 16:44:14 +0000 (+0100) Subject: Merge branch 'master' of ssh://marmaro.de:443/var/git/mmh X-Git-Tag: mmh-0.2-RC1~56 X-Git-Url: http://git.marmaro.de/?p=mmh;a=commitdiff_plain;h=5a12e4b0477d3ad699f5713682d26079f2792d17 Merge branch 'master' of ssh://marmaro.de:443/var/git/mmh Conflicts: uip/mhl.c uip/mhlist.c uip/mhmail.c uip/pick.c uip/send.c --- 5a12e4b0477d3ad699f5713682d26079f2792d17 diff --cc uip/mhl.c index 8c2e4af,45113f3..5403673 --- a/uip/mhl.c +++ b/uip/mhl.c @@@ -573,10 -565,10 +565,9 @@@ process(char *fname, int ofilen, int of FILE *fp = NULL; struct mcomp *c1; - switch (setjmp(env)) { - case OK: + if (setjmp(env) == 0) { if (fname) { - fp = mhl_action ? (*mhl_action) (fname) : - fopen(fname, "r"); + fp = fopen(fname, "r"); if (fp == NULL) { advise(fname, "unable to open"); exitstat++; @@@ -588,18 -580,20 +579,18 @@@ } SIGNAL(SIGINT, intrser); mhlfile(fp, fname, ofilen, ofilec); - /* FALL THROUGH! */ - default: - SIGNAL(SIGINT, SIG_IGN); - if (fp != stdin) - fclose(fp); - if (holder.c_text) { - free(holder.c_text); - holder.c_text = NULL; - } - free_queue(&msghd, &msgtl); - for (c1 = fmthd; c1; c1 = c1->c_next) - c1->c_flags &= ~HDROUTPUT; - break; } + + SIGNAL(SIGINT, SIG_IGN); - if (mhl_action == NULL && fp != stdin) ++ if (fp != stdin) + fclose(fp); + if (holder.c_text) { + free(holder.c_text); + holder.c_text = NULL; + } + free_queue(&msghd, &msgtl); + for (c1 = fmthd; c1; c1 = c1->c_next) + c1->c_flags &= ~HDROUTPUT; } diff --cc uip/mhmail.c index e79d874,46b16fd..9936261 --- a/uip/mhmail.c +++ b/uip/mhmail.c @@@ -159,25 -161,42 +160,26 @@@ main(int argc, char **argv vec[nvec++] = tmpfil; vec[nvec] = NULL; - if ((child_id = fork()) == NOTOK) { - /* report failure and then send it */ - adios(NULL, "unable to fork"); - - } else if (child_id == 0) { - /* child process */ - execvp(*vec, vec); - fprintf(stderr, "unable to exec "); - perror(*vec); - _exit(-1); - - } else { - /* parent process */ - if ((status = pidXwait(child_id, *vec))) { - /* spost failed, save draft as dead.letter */ - int in, out; - - in = open(tmpfil, O_RDONLY); - out = creat("dead.letter", 0600); - if (in == -1 || out == -1) { - fprintf(stderr, "Letter left at %s.\n", - tmpfil); - /* sysexits.h exit-status from spost */ - exit(status ? 1 : 0); - } - cpydata(in, out, tmpfil, "dead.letter"); - close(in); - close(out); - fprintf(stderr, "Letter saved in dead.letter\n"); + if ((status = execprog(*vec, vec))) { + /* spost failed, save draft as dead.letter */ + int in, out; + + in = open(tmpfil, O_RDONLY); + out = creat("dead.letter", 0600); + if (in == -1 || out == -1) { + fprintf(stderr, "Letter left at %s.\n", + tmpfil); - done(status ? 1 : 0); ++ /* sysexits.h exit-status from spost */ ++ exit(status ? 1 : 0); } - unlink(tmpfil); - /* sysexits.h exit status from spost */ - exit(status ? 1 : 0); + cpydata(in, out, tmpfil, "dead.letter"); + close(in); + close(out); + fprintf(stderr, "Letter saved in dead.letter\n"); } - - return 0; /* dead code to satisfy the compiler */ + unlink(tmpfil); - done(status ? 1 : 0); - return 0; /* dead code to satisfy the compiler */ ++ /* sysexits.h exit status from spost */ ++ exit(status ? 1 : 0); } diff --cc uip/pick.c index 58c5969,ae1fa03..6c59add --- a/uip/pick.c +++ b/uip/pick.c @@@ -163,7 -163,7 +163,7 @@@ main(int argc, char **argv adios(NULL, "too many sequences (more than %d) specified", NUMATTRS); if (!seq_nameok(cp)) - done(1); - exit(1); ++ exit(1); seqs[seqp++] = cp; continue; diff --cc uip/send.c index 13ae761,492f027..234dfb2 --- a/uip/send.c +++ b/uip/send.c @@@ -288,27 -283,26 +283,22 @@@ sendsbr(char **vec, int vecp, char *drf break; } - done=armed_done; - if (setjmp(env) == 0) { - status = sendaux(vec, vecp, drft, st) ? NOTOK : OK; - if (status == OK) { - /* move original draft to +trash folder */ - /* temporary close stdin, for refile not to ask */ - dupfd = dup(0); - close(0); - if (execprogl("refile", "refile", "-file", - original_draft, "+trash", - (char *)NULL) != 0) { - advise(NULL, "unable to trash the draft"); - } - dup2(dupfd, 0); - close(dupfd); - switch (status = sendaux(vec, vecp, drft, st)) { - case OK: ++ if ((status = sendaux(vec, vecp, drft, st)) == OK) { + /* move original draft to +trash folder */ + /* temporary close stdin, for refile not to ask */ + dupfd = dup(0); + close(0); + if (execprogl("refile", "refile", "-file", + original_draft, "+trash", + (char *)NULL) != 0) { + advise(NULL, "unable to trash the draft"); } + dup2(dupfd, 0); + close(dupfd); - break; - - default: + } else { status = DONE; - break; } - done=exit; if (distfile) { unlink(distfile); }