From: Etienne CHAMPETIER Date: Mon, 30 Nov 2015 23:09:19 +0000 (+0000) Subject: ujail: fixup code style // -> /* */ X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fprocd.git;a=commitdiff_plain;h=6f192af24458cff4ca3e3f83533ac4c7f26b33e3;ds=sidebyside ujail: fixup code style // -> /* */ Signed-off-by: Etienne CHAMPETIER --- 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));