diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-09-30 20:41:44 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-09-30 20:41:44 +0000 |
commit | 55a994055ff2c391aeec377dbb1e6b3c096334d2 (patch) | |
tree | 750347c7cd275a8fbb8ca17e5d36579aac462e9a /libbb | |
parent | 3038ac9c1977c8472fdda2d833a4e4fd5ba6ea94 (diff) | |
download | busybox-55a994055ff2c391aeec377dbb1e6b3c096334d2.tar.gz |
lsmod: repair indentation
httpd: ifdef CONFIG -> if ENABLE (shorted, catched typos)
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/vfork_daemon_rexec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbb/vfork_daemon_rexec.c b/libbb/vfork_daemon_rexec.c index 7e4b0c097..ebd32f8cd 100644 --- a/libbb/vfork_daemon_rexec.c +++ b/libbb/vfork_daemon_rexec.c @@ -46,8 +46,8 @@ void vfork_daemon_rexec(int nochdir, int noclose, vfork_args = xcalloc(sizeof(char *), argc + 3); vfork_args[a++] = CONFIG_BUSYBOX_EXEC_PATH; while(*argv) { - vfork_args[a++] = *argv; - argv++; + vfork_args[a++] = *argv; + argv++; } vfork_args[a] = foreground_opt; switch (vfork()) { |