diff options
Diffstat (limited to 'remote-cstms.c')
-rw-r--r-- | remote-cstms.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/remote-cstms.c b/remote-cstms.c index 713b89a..1c4591b 100644 --- a/remote-cstms.c +++ b/remote-cstms.c @@ -221,11 +221,11 @@ start_remote_job (char **argv, char **envp, int stdin_fd, fflush (stdout); fflush (stderr); - pid = vfork (); + pid = fork (); if (pid < 0) { /* The fork failed! */ - perror_with_name ("vfork", ""); + perror_with_name ("fork", ""); return 1; } else if (pid == 0) |