diff options
| author | Dag-Erling Smørgrav <des@FreeBSD.org> | 1998-10-13 14:52:33 +0000 |
|---|---|---|
| committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 1998-10-13 14:52:33 +0000 |
| commit | 1fd98d7d880e470809cc3284ef04a03bf3490b02 (patch) | |
| tree | 2d0429f5c6effd4e4d3c841a030205ca692d3745 /bin | |
| parent | 0ffc35a46540c54dc1537a602e1e4af78282abad (diff) | |
Notes
Diffstat (limited to 'bin')
| -rw-r--r-- | bin/mv/mv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/mv/mv.c b/bin/mv/mv.c index 27182857d8e79..b471bef4b1faf 100644 --- a/bin/mv/mv.c +++ b/bin/mv/mv.c @@ -45,7 +45,7 @@ static char const copyright[] = static char sccsid[] = "@(#)mv.c 8.2 (Berkeley) 4/2/94"; #endif static const char rcsid[] = - "$Id: mv.c,v 1.20 1998/06/09 03:39:38 imp Exp $"; + "$Id: mv.c,v 1.21 1998/06/28 21:00:04 bde Exp $"; #endif /* not lint */ #include <sys/param.h> @@ -308,7 +308,7 @@ copy(from, to) { int pid, status; - if ((pid = vfork()) == 0) { + if ((pid = fork()) == 0) { execl(_PATH_CP, "mv", "-PRp", from, to, NULL); warn("%s", _PATH_CP); _exit(1); |
