From 0e05b8cac60060e0141d06842fd42b78f5854a01 Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Sat, 25 Sep 2021 14:41:42 -0400 Subject: [PATCH] Update src/Tiny_httpd.ml --- src/Tiny_httpd.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tiny_httpd.ml b/src/Tiny_httpd.ml index a7aebbf0..38f11ccc 100644 --- a/src/Tiny_httpd.ml +++ b/src/Tiny_httpd.ml @@ -1069,7 +1069,7 @@ let run (self:t) : (unit,_) result = ); let sock, should_bind = match self.sock with | Some s -> - s, false (* Because we're getting a socket from systemd *) + s, false (* Because we're getting a socket from the caller (e.g. systemd) *) | None -> Unix.socket (if is_ipv6 self then Unix.PF_INET6 else Unix.PF_INET)