aboutsummaryrefslogtreecommitdiff
path: root/init
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-02-23 00:05:56 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-02-23 00:05:56 +0000
commit8953edb6a898d2012748051ed238f21152e13365 (patch)
tree7500a7caa9017089bb732ac0fdd5fe1bf4b9c221 /init
parentfdbd58c5f5d82d0968a38a4daf790912893d8912 (diff)
downloadbusybox-w32-8953edb6a898d2012748051ed238f21152e13365.tar.gz
busybox-w32-8953edb6a898d2012748051ed238f21152e13365.tar.bz2
busybox-w32-8953edb6a898d2012748051ed238f21152e13365.zip
I should be more careful...
git-svn-id: svn://busybox.net/trunk/busybox@1892 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'init')
-rw-r--r--init/init.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/init/init.c b/init/init.c
index 4284600c4..0620e1ea1 100644
--- a/init/init.c
+++ b/init/init.c
@@ -93,8 +93,9 @@ static const int RB_AUTOBOOT = 0x01234567;
93#endif 93#endif
94#endif 94#endif
95 95
96#undef _PATH_STDPATH 96#ifndef _PATH_STDPATH
97#define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin" 97#define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin"
98#endif
98 99
99 100
100#if defined BB_FEATURE_INIT_COREDUMPS 101#if defined BB_FEATURE_INIT_COREDUMPS
@@ -133,7 +134,8 @@ static _syscall2(int, bdflush, int, func, int, data);
133#define INIT_SCRIPT "/etc/init.d/rcS" /* Default sysinit script. */ 134#define INIT_SCRIPT "/etc/init.d/rcS" /* Default sysinit script. */
134#endif 135#endif
135 136
136static const int MAXENV = 16; /* Number of env. vars */ 137#define MAXENV 16 /* Number of env. vars */
138//static const int MAXENV = 16; /* Number of env. vars */
137static const int LOG = 0x1; 139static const int LOG = 0x1;
138static const int CONSOLE = 0x2; 140static const int CONSOLE = 0x2;
139 141