]> git.marmaro.de Git - mmh/blobdiff - sbr/refile.c
Removed the mhlproc profile entry. Call mhl directly.
[mmh] / sbr / refile.c
index 00647ddd1463dbda1d0ce388e1f930b59b755361..55ba754e8797729dfb18e7745da170da8d73e023 100644 (file)
@@ -33,18 +33,18 @@ refile(char **arg, char *file)
        context_save();  /* save the context file */
        fflush(stdout);
 
-       switch (pid = vfork()) {
-               case -1:
-                       advise("fork", "unable to");
-                       return -1;
-
-               case 0:
-                       execvp(fileproc, vec);
-                       fprintf(stderr, "unable to exec ");
-                       perror(fileproc);
-                       _exit(-1);
-
-               default:
-                       return (pidwait(pid, -1));
+       switch (pid = fork()) {
+       case -1:
+               advise("fork", "unable to");
+               return -1;
+
+       case 0:
+               execvp(fileproc, vec);
+               fprintf(stderr, "unable to exec ");
+               perror(fileproc);
+               _exit(-1);
+
+       default:
+               return (pidwait(pid, -1));
        }
 }