diff options
author | 1996-12-06 01:54:58 +0000 | |
---|---|---|
committer | 1996-12-06 01:54:58 +0000 | |
commit | 31375ee367ec60a2f2316627480388c8b55741a3 (patch) | |
tree | b4ae929964c83740015fcb3a92504d968381b7c7 /lib/libutil | |
parent | duh (diff) | |
download | wireguard-openbsd-31375ee367ec60a2f2316627480388c8b55741a3.tar.xz wireguard-openbsd-31375ee367ec60a2f2316627480388c8b55741a3.zip |
vfork w/ exit botch
Diffstat (limited to 'lib/libutil')
-rw-r--r-- | lib/libutil/passwd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libutil/passwd.c b/lib/libutil/passwd.c index 8df9b382a14..a982a9449c2 100644 --- a/lib/libutil/passwd.c +++ b/lib/libutil/passwd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: passwd.c,v 1.4 1996/06/19 12:36:01 deraadt Exp $ */ +/* $OpenBSD: passwd.c,v 1.5 1996/12/06 01:55:33 deraadt Exp $ */ /* * Copyright (c) 1987, 1993, 1994, 1995 * The Regents of the University of California. All rights reserved. @@ -86,7 +86,7 @@ pw_mkdb() if (pid == 0) { execl(_PATH_PWD_MKDB, "pwd_mkdb", "-p", _PATH_MASTERPASSWD_LOCK, NULL); - exit(1); + _exit(1); } pid = waitpid(pid, &pstat, 0); if (pid == -1 || !WIFEXITED(pstat) || WEXITSTATUS(pstat) != 0) |