X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fprocd.git;a=blobdiff_plain;f=jail%2Fjail.c;h=5c995e5b21d0000d08d3c580afce1eabd5f6109e;hp=4297f717c0bd894885585857156fc1c3fdfa7031;hb=6f192af24458cff4ca3e3f83533ac4c7f26b33e3;hpb=15ff8b1d09187c11b1331f811cc75b0dd2076827 diff --git a/jail/jail.c b/jail/jail.c index 4297f71..5c995e5 100644 --- a/jail/jail.c +++ b/jail/jail.c @@ -237,7 +237,7 @@ static int exec_jail(void) INFO("exec-ing %s\n", *opts.jail_argv); execve(*opts.jail_argv, opts.jail_argv, envp); - //we get there only if execve fails + /* we get there only if execve fails */ ERROR("failed to execve %s: %s\n", *opts.jail_argv, strerror(errno)); exit(EXIT_FAILURE); } @@ -344,7 +344,7 @@ int main(int argc, char **argv) } } - //no param found + /* no param found */ if (argc - optind < 1) { usage(); return EXIT_FAILURE; @@ -384,7 +384,7 @@ int main(int argc, char **argv) } if (jail_process.pid > 0) { - //parent process + /* parent process */ uloop_process_add(&jail_process); uloop_run(); uloop_done(); @@ -394,7 +394,7 @@ int main(int argc, char **argv) waitpid(jail_process.pid, NULL, 0); } } else if (jail_process.pid == 0) { - //fork child process + /* fork child process */ return exec_jail(); } else { ERROR("failed to clone/fork: %s\n", strerror(errno));