Fix comments.

MFC after:	1 week
Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Mark Johnston 2018-10-24 00:17:19 +00:00
parent 73c9014569
commit e9b1dc32c9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=339675

View File

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