X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/b02a191a4c725fb987c56dc41b2a81fbd6bff44c..6547ca9f73c3f02b2356017bbd7ff85292f8e4a1:/sbr/push.c diff --git a/sbr/push.c b/sbr/push.c index c4d0e405..4576c8e9 100644 --- a/sbr/push.c +++ b/sbr/push.c @@ -1,6 +1,4 @@ - -/* - * push.c -- push a fork into the background +/* push.c -- push a fork into the background * * This code is Copyright (c) 2002, by the authors of nmh. See the * COPYRIGHT file in the root directory of the nmh distribution for @@ -9,21 +7,20 @@ #include #include +#include "h/done.h" +#include "m_mktemp.h" void push(void) { pid_t pid; - int i; - - for (i = 0; (pid = fork()) == -1 && i < 5; i++) - sleep (5); + pid = fork(); switch (pid) { case -1: /* fork error */ - advise (NULL, "unable to fork, so can't push..."); + inform("unable to fork, so can't push..."); break; case 0: @@ -53,4 +50,3 @@ push(void) done (0); } } -