Don't bogotify pkg_add's stderr.

This commit is contained in:
Jordan K. Hubbard 1997-02-14 23:00:01 +00:00
parent 39a2443fbd
commit 3a28079136
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=22727
2 changed files with 4 additions and 4 deletions

View File

@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite.
*
* $Id: package.c,v 1.56 1997/02/14 20:59:06 jkh Exp $
* $Id: package.c,v 1.57 1997/02/14 21:59:26 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@ -123,7 +123,7 @@ package_extract(Device *dev, char *name, Boolean depended)
if (!pid) {
dup2(pfd[0], 0); close(pfd[0]);
dup2(DebugFD, 1);
close(2);
dup2(DebugFD, 2);
close(pfd[1]);
i = execl("/usr/sbin/pkg_add", "/usr/sbin/pkg_add", "-", 0);
if (isDebug())

View File

@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite.
*
* $Id: package.c,v 1.56 1997/02/14 20:59:06 jkh Exp $
* $Id: package.c,v 1.57 1997/02/14 21:59:26 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@ -123,7 +123,7 @@ package_extract(Device *dev, char *name, Boolean depended)
if (!pid) {
dup2(pfd[0], 0); close(pfd[0]);
dup2(DebugFD, 1);
close(2);
dup2(DebugFD, 2);
close(pfd[1]);
i = execl("/usr/sbin/pkg_add", "/usr/sbin/pkg_add", "-", 0);
if (isDebug())