summaryrefslogtreecommitdiffstats
path: root/usr.sbin/sysinstall/package.c
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1997-02-14 23:00:01 +0000
committerjkh <jkh@FreeBSD.org>1997-02-14 23:00:01 +0000
commit64312c9e34b5b700d355254c8bd97af1aff38ccf (patch)
tree7a8ade4deef54732418f52c6c9e421c740b68549 /usr.sbin/sysinstall/package.c
parentac84b047f79d16f8857b9dbde9cb93bf46a39178 (diff)
downloadFreeBSD-src-64312c9e34b5b700d355254c8bd97af1aff38ccf.zip
FreeBSD-src-64312c9e34b5b700d355254c8bd97af1aff38ccf.tar.gz
Don't bogotify pkg_add's stderr.
Diffstat (limited to 'usr.sbin/sysinstall/package.c')
-rw-r--r--usr.sbin/sysinstall/package.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/sysinstall/package.c b/usr.sbin/sysinstall/package.c
index 8c0b1da..8387f63 100644
--- a/usr.sbin/sysinstall/package.c
+++ b/usr.sbin/sysinstall/package.c
@@ -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())
OpenPOWER on IntegriCloud