aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-10-24 17:19:38 +0000
committerEric Andersen <andersen@codepoet.org>2001-10-24 17:19:38 +0000
commit1a10eec17846b864a89834239a0533040cb504e7 (patch)
tree683eedea421bf7ded04b9eaae3f448b322c91381 /shell
parentbfebd35bea54258dfc9cbe92659c5e9f7c09adbd (diff)
downloadbusybox-1a10eec17846b864a89834239a0533040cb504e7.tar.gz
Fixup the location of pwd.h and grp.h
Diffstat (limited to 'shell')
-rw-r--r--shell/ash.c4
-rw-r--r--shell/cmdedit.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 8544d8131..ffafcfeb4 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -89,7 +89,6 @@
#include <fcntl.h>
#include <limits.h>
#include <paths.h>
-#include <pwd.h>
#include <setjmp.h>
#include <signal.h>
#include <stdarg.h>
@@ -107,6 +106,7 @@
#include <sys/times.h>
#include <sys/types.h>
#include <sys/wait.h>
+#include "pwd.h"
#if !defined(FNMATCH_BROKEN)
@@ -12627,7 +12627,7 @@ findvar(struct var **vpp, const char *name)
/*
* Copyright (c) 1999 Herbert Xu <herbert@debian.org>
* This file contains code for the times builtin.
- * $Id: ash.c,v 1.30 2001/10/24 08:01:06 andersen Exp $
+ * $Id: ash.c,v 1.31 2001/10/24 17:19:35 andersen Exp $
*/
static int timescmd (int argc, char **argv)
{
diff --git a/shell/cmdedit.c b/shell/cmdedit.c
index d1b9111ea..d57e4c12b 100644
--- a/shell/cmdedit.c
+++ b/shell/cmdedit.c
@@ -82,7 +82,7 @@
#ifdef CONFIG_FEATURE_GETUSERNAME_AND_HOMEDIR
# ifndef TEST
-# include "pwd_grp/pwd.h"
+# include "pwd.h"
# else
# include <pwd.h>
# endif /* TEST */