mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Fix comments.
MFC after: 1 week Sponsored by: The FreeBSD Foundation
This commit is contained in:
parent
73c9014569
commit
e9b1dc32c9
1 changed files with 2 additions and 2 deletions
|
|
@ -100,12 +100,12 @@ cap_init(void)
|
|||
|
||||
pid = pdfork(&pfd, 0);
|
||||
if (pid == 0) {
|
||||
/* Parent. */
|
||||
/* Child. */
|
||||
close(sock[0]);
|
||||
casper_main_loop(sock[1]);
|
||||
/* NOTREACHED. */
|
||||
} else if (pid > 0) {
|
||||
/* Child. */
|
||||
/* Parent. */
|
||||
close(sock[1]);
|
||||
chan = cap_wrap(sock[0], 0);
|
||||
if (chan == NULL) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue