aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorvodz <vodz@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-10-12 15:34:25 +0000
committervodz <vodz@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-10-12 15:34:25 +0000
commit3ccc6852b29b385ffde47f98772b55704b47792a (patch)
tree0da08a6d852fcb5d68bbe3a368460ed815b74923 /shell
parent645a928b37cf8f09f3d0648030d5b454753428fc (diff)
downloadbusybox-w32-3ccc6852b29b385ffde47f98772b55704b47792a.tar.gz
busybox-w32-3ccc6852b29b385ffde47f98772b55704b47792a.tar.bz2
busybox-w32-3ccc6852b29b385ffde47f98772b55704b47792a.zip
usage bb_dev_null
git-svn-id: svn://busybox.net/trunk/busybox@11846 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'shell')
-rw-r--r--shell/msh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/msh.c b/shell/msh.c
index 25c98a430..30ebc7a3a 100644
--- a/shell/msh.c
+++ b/shell/msh.c
@@ -2714,7 +2714,7 @@ int act;
2714 interactive = 0; 2714 interactive = 0;
2715 if (pin == NULL) { 2715 if (pin == NULL) {
2716 close(0); 2716 close(0);
2717 open("/dev/null", 0); 2717 open(bb_dev_null, 0);
2718 } 2718 }
2719 _exit(execute(t->left, pin, pout, FEXEC)); 2719 _exit(execute(t->left, pin, pout, FEXEC));
2720 } 2720 }