From e9b1dc32c9bd2ebae5f9e140bfa0e0321bc366b5 Mon Sep 17 00:00:00 2001 From: Mark Johnston Date: Wed, 24 Oct 2018 00:17:19 +0000 Subject: [PATCH] Fix comments. MFC after: 1 week Sponsored by: The FreeBSD Foundation --- lib/libcasper/libcasper/libcasper.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/libcasper/libcasper/libcasper.c b/lib/libcasper/libcasper/libcasper.c index 8640015d0e3..509590e7ae7 100644 --- a/lib/libcasper/libcasper/libcasper.c +++ b/lib/libcasper/libcasper/libcasper.c @@ -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) {