From 0a8812bdc588fd6e32f7c5ad97cfc9288b9822dc Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Fri, 19 May 2006 13:12:21 +0000 Subject: - replace _PATH_DEVNULL with bb_dev_null --- shell/ash.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'shell/ash.c') diff --git a/shell/ash.c b/shell/ash.c index 708ab21fb..33eaf9227 100644 --- a/shell/ash.c +++ b/shell/ash.c @@ -7147,8 +7147,8 @@ forkchild(struct job *jp, union node *n, int mode) ignoresig(SIGQUIT); if (jp->nprocs == 0) { close(0); - if (open(_PATH_DEVNULL, O_RDONLY) != 0) - sh_error("Can't open %s", _PATH_DEVNULL); + if (open(bb_dev_null, O_RDONLY) != 0) + sh_error("Can't open %s", bb_dev_null); } } if (!oldlvl && iflag) { -- cgit v1.2.3