]> diplodocus.org Git - nmh/blobdiff - sbr/push.c
new.c: Order two return statements to match comment.
[nmh] / sbr / push.c
index 115abac1766f777ab1b6570293f1735809bd1b33..6708db4700a7b19857f43d00984e53fe11f8859a 100644 (file)
@@ -1,5 +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
@@ -8,17 +7,15 @@
 
 #include <h/mh.h>
 #include <h/signals.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 */