From 3ca80efd3ae02267b3cd6ee92f92c592e3892a1e Mon Sep 17 00:00:00 2001 From: des Date: Tue, 13 Oct 1998 14:52:33 +0000 Subject: Calls one or more of malloc(), warn(), err(), syslog(), execlp() or execvp() in the child branch of a vfork(). Changed to use fork() instead. Some of these (mv, find, apply, xargs) might benefit greatly from being rewritten to use vfork() properly. PR: Loosely related to bin/8252 Approved by: jkh and bde --- bin/mv/mv.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin/mv') diff --git a/bin/mv/mv.c b/bin/mv/mv.c index 2718285..b471bef 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 @@ -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); -- cgit v1.1