lsmod: repair indentation

httpd: ifdef CONFIG -> if ENABLE (shorted, catched typos)
This commit is contained in:
Denis Vlasenko
2006-09-30 20:41:44 +00:00
parent 3038ac9c19
commit 55a994055f
3 changed files with 122 additions and 126 deletions

View File

@ -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()) {