aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-06-06 05:07:11 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2010-06-06 05:07:11 +0200
commit161bb8fa124a9bd3f39579123e347a04d428d25b (patch)
tree9229878e5abac0ed8c73dac11f8e7ed272d15def /shell
parent22bdf90334515e047fcccf36ae80a543b6a056de (diff)
downloadbusybox-161bb8fa124a9bd3f39579123e347a04d428d25b.tar.gz
fix a few goofs uncovered by "make allnoconfig" testing
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell')
-rw-r--r--shell/ash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c
index b2c56f0aa..90680e849 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -9479,7 +9479,7 @@ preadfd(void)
}
}
#else
- nr = nonblock_safe_read(g_parsefile->fd, buf, IBUFSIZ - 1);
+ nr = nonblock_safe_read(g_parsefile->pf_fd, buf, IBUFSIZ - 1);
#endif
#if 0