diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-07-03 23:19:26 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-07-03 23:19:26 +0000 |
commit | 887ca79f04cdf45874ed783c1fb9b950bf25a246 (patch) | |
tree | 25f08b2b2ea8b333aac91b6b75876f82a4cfef6f /shell | |
parent | 360e2549544b813dd805361d04744c5a4a630bb8 (diff) |
Scrub pwd.h and grp.h handling so we don't have to play any
silly games.
-Erik
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ash.c | 4 | ||||
-rw-r--r-- | shell/cmdedit.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/shell/ash.c b/shell/ash.c index 80da35b59..366f704be 100644 --- a/shell/ash.c +++ b/shell/ash.c @@ -69,7 +69,7 @@ #include <sys/types.h> #include <sys/wait.h> #include "busybox.h" -#include "pwd.h" +#include "pwd_.h" #if !defined(FNMATCH_BROKEN) @@ -12442,7 +12442,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.52 2002/06/06 12:07:28 andersen Exp $ + * $Id: ash.c,v 1.53 2002/07/03 23:19:22 andersen Exp $ */ static int timescmd (int argc, char **argv) { diff --git a/shell/cmdedit.c b/shell/cmdedit.c index 4c502df12..c5f2e9da2 100644 --- a/shell/cmdedit.c +++ b/shell/cmdedit.c @@ -82,7 +82,7 @@ #ifdef CONFIG_FEATURE_GETUSERNAME_AND_HOMEDIR # ifndef TEST -# include "pwd.h" +# include "pwd_.h" # else # include <pwd.h> # endif /* TEST */ |