Wrapped setjmp(), sigsetjmp(), and vfork() calls to silence gcc -Wclobbered for good...
[mmh] / sbr / refile.c
index dc068fe..a2a958d 100644 (file)
@@ -3,8 +3,6 @@
  * refile.c -- call the "fileproc" to refile the
  *          -- msg or draft into another folder
  *
- * $Id$
- *
  * This code is Copyright (c) 2002, by the authors of nmh.  See the
  * COPYRIGHT file in the root directory of the nmh distribution for
  * complete copyright information.
@@ -36,7 +34,7 @@ refile (char **arg, char *file)
     context_save();    /* save the context file */
     fflush(stdout);
 
-    switch (pid = vfork()) {
+    switch (pid = m_vfork()) {
        case -1: 
            advise ("fork", "unable to");
            return -1;