hermes

HTTP GET/HEAD-only web server for static content.
git clone git://git.francescosaccone.com/hermes
Log | Files | Refs | README | LICENSE

commit 9a54896c3fc8d43f34bca82a186fd7eb9bed9587
parent 4801424e92e56ec465695bb83f82532057f03ee1
Author: Francesco Saccone <francesco@francescosaccone.com>
Date:   Mon, 31 Mar 2025 14:07:35 +0200

docs: split comments in specific lines

Signed-off-by: Francesco Saccone <francesco@francescosaccone.com>

Diffstat:
Mhermes.c | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/hermes.c b/hermes.c @@ -119,9 +119,10 @@ main(int argc, char *argv[]) { /* child process */ break; default: - /* parent process: wait for the child process to exit */ + /* parent process */ int child_status; + /* wait for the child process to exit */ waitpid(pid, &child_status, 0); break; }